public enum WikittyTypes extends Enum<WikittyTypes>
| Enum Constant and Description |
|---|
BINARY |
BOOLEAN |
DATE |
NUMERIC |
STRING |
WIKITTY |
| Modifier and Type | Method and Description |
|---|---|
static WikittyTypes |
parse(String name)
convert string to TYPE, this method accept not trimed and not well
cased string (difference with valueOf)
|
static WikittyTypes |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static WikittyTypes[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final WikittyTypes BINARY
public static final WikittyTypes BOOLEAN
public static final WikittyTypes DATE
public static final WikittyTypes NUMERIC
public static final WikittyTypes STRING
public static final WikittyTypes WIKITTY
public static WikittyTypes[] values()
for (WikittyTypes c : WikittyTypes.values()) System.out.println(c);
public static WikittyTypes 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 static WikittyTypes parse(String name)
name - Copyright © 2009–2015 CodeLutin. All rights reserved.