public enum TypeEntry extends Enum<TypeEntry>
| Enum Constant and Description |
|---|
ALL |
LETTERED |
NO_LETTERED |
| Modifier and Type | Method and Description |
|---|---|
boolean |
isLettered() |
boolean |
isNoLettered() |
String |
toString() |
static TypeEntry |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TypeEntry[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TypeEntry ALL
public static final TypeEntry LETTERED
public static final TypeEntry NO_LETTERED
public static TypeEntry[] values()
for (TypeEntry c : TypeEntry.values()) System.out.println(c);
public static TypeEntry 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 boolean isLettered()
public boolean isNoLettered()
Copyright © 2008–2015 CodeLutin. All rights reserved.