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