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