public enum SizeType extends Enum<SizeType>
| Enum Constant and Description |
|---|
current
Currently applied size.
|
maximum
Maximum possible size.
|
minimum
Minimum possible size.
|
preferred
Preferred size.
|
| Modifier and Type | Method and Description |
|---|---|
static SizeType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SizeType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SizeType minimum
public static final SizeType preferred
public static final SizeType current
public static final SizeType maximum
public static SizeType[] values()
for (SizeType c : SizeType.values()) System.out.println(c);
public static 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 nullCopyright © 2020. All rights reserved.