public static enum Style.SizeType extends Enum<Style.SizeType>
Enum Constant and Description |
---|
MainOrPreferredSize |
MaxSize |
MinSize |
Modifier and Type | Method and Description |
---|---|
static Style.SizeType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Style.SizeType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Style.SizeType MainOrPreferredSize
public static final Style.SizeType MinSize
public static final Style.SizeType MaxSize
public static Style.SizeType[] values()
for (Style.SizeType c : Style.SizeType.values()) System.out.println(c);
public static Style.SizeType 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 nullRevision 4.0.15 / 20220727-0149