public static enum SizeFit.Fit extends Enum<SizeFit.Fit>
Enum Constant and Description |
---|
EXTRA_LARGE |
EXTRA_SMALL |
FREE |
LARGE |
MEDIUM |
SMALL |
XXL |
XXS |
Modifier and Type | Method and Description |
---|---|
static SizeFit.Fit |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SizeFit.Fit[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SizeFit.Fit XXS
public static final SizeFit.Fit EXTRA_SMALL
public static final SizeFit.Fit SMALL
public static final SizeFit.Fit MEDIUM
public static final SizeFit.Fit LARGE
public static final SizeFit.Fit EXTRA_LARGE
public static final SizeFit.Fit XXL
public static final SizeFit.Fit FREE
public static SizeFit.Fit[] values()
for (SizeFit.Fit c : SizeFit.Fit.values()) System.out.println(c);
public static SizeFit.Fit 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. All rights reserved.