public enum MinimumSize extends Enum<MinimumSize>
| Enum Constant and Description |
|---|
LARGE |
MEDIUM |
NONE |
SMALL |
XLARGE |
XSMALL |
XXLARGE |
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
static MinimumSize |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MinimumSize[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MinimumSize NONE
public static final MinimumSize XSMALL
public static final MinimumSize SMALL
public static final MinimumSize MEDIUM
public static final MinimumSize LARGE
public static final MinimumSize XLARGE
public static final MinimumSize XXLARGE
public static MinimumSize[] values()
for (MinimumSize c : MinimumSize.values()) System.out.println(c);
public static MinimumSize 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 nullpublic String toString()
toString in class Enum<MinimumSize>Copyright © 2020. All rights reserved.