public static enum ListEncoding.type extends Enum<ListEncoding.type>
| Enum Constant and Description |
|---|
ONE_LEVEL |
THREE_LEVEL |
TWO_LEVEL |
| Modifier and Type | Field and Description |
|---|---|
int |
value |
| Modifier and Type | Method and Description |
|---|---|
ListEncoding.type |
intern() |
String |
toString() |
static ListEncoding.type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ListEncoding.type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ListEncoding.type ONE_LEVEL
public static final ListEncoding.type TWO_LEVEL
public static final ListEncoding.type THREE_LEVEL
public static ListEncoding.type[] values()
for (ListEncoding.type c : ListEncoding.type.values()) System.out.println(c);
public static ListEncoding.type 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 ListEncoding.type intern()
public String toString()
toString in class Enum<ListEncoding.type>Copyright © 2021. All rights reserved.