public enum RadioStyle extends Enum<RadioStyle>
Enum Constant and Description |
---|
RADIO
the only face option for the material radio button.
|
Modifier and Type | Method and Description |
---|---|
static RadioStyle |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RadioStyle[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RadioStyle RADIO
public static RadioStyle[] values()
for (RadioStyle c : RadioStyle.values()) System.out.println(c);
public static RadioStyle 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 © 2016 com.github.ilyes4j. All rights reserved.