public static enum Buttons.OverflowMenuStyle extends Enum<Buttons.OverflowMenuStyle>
Enum defining how a Buttons component should handle overflow actions.
| Enum Constant and Description |
|---|
ActionSheet |
None |
PopupMenu |
| Modifier and Type | Method and Description |
|---|---|
static Buttons.OverflowMenuStyle |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Buttons.OverflowMenuStyle[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Buttons.OverflowMenuStyle ActionSheet
public static final Buttons.OverflowMenuStyle PopupMenu
public static final Buttons.OverflowMenuStyle None
public static Buttons.OverflowMenuStyle[] values()
for (Buttons.OverflowMenuStyle c : Buttons.OverflowMenuStyle.values()) System.out.println(c);
public static Buttons.OverflowMenuStyle valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2021. All Rights Reserved.