public enum PresentationElementClassProperties extends java.lang.Enum<PresentationElementClassProperties> implements java.util.function.Supplier<PresentationElementClassProperty>
Enum Constant and Description |
---|
GENERATED_FROM_ACTION |
GENERATED_FROM_ELEMENT |
GENERATED_FROM_VIEW |
Modifier and Type | Method and Description |
---|---|
PresentationElementClassProperty |
get() |
static PresentationElementClassProperties |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PresentationElementClassProperties[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PresentationElementClassProperties GENERATED_FROM_ACTION
public static final PresentationElementClassProperties GENERATED_FROM_ELEMENT
public static final PresentationElementClassProperties GENERATED_FROM_VIEW
public static PresentationElementClassProperties[] values()
for (PresentationElementClassProperties c : PresentationElementClassProperties.values()) System.out.println(c);
public static PresentationElementClassProperties valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic PresentationElementClassProperty get()
get
in interface java.util.function.Supplier<PresentationElementClassProperty>