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