public enum Interfaces extends Enum<Interfaces>
| Modifier and Type | Class and Description |
|---|---|
static interface |
Interfaces.AccessDeserializers |
static interface |
Interfaces.AccessSerializers |
static interface |
Interfaces.AccessSimpleXml |
static interface |
Interfaces.CheckedIterator<T> |
static interface |
Interfaces.ParserConfiguration |
| Modifier and Type | Method and Description |
|---|---|
static Interfaces |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Interfaces[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static Interfaces[] values()
for (Interfaces c : Interfaces.values()) System.out.println(c);
public static Interfaces 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.