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