public static enum FormImage.Type extends java.lang.Enum<FormImage.Type>
| Modifier and Type | Method and Description |
|---|---|
static FormImage.Type |
byName(java.lang.String name) |
java.lang.String |
getName() |
static FormImage.Type |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static FormImage.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FormImage.Type PATH
public static final FormImage.Type URL
public static FormImage.Type[] values()
for (FormImage.Type c : FormImage.Type.values()) System.out.println(c);
public static FormImage.Type 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 null@Nullable public static FormImage.Type byName(java.lang.String name)
public java.lang.String getName()