public enum SType extends Enum<SType>
| Enum Constant and Description |
|---|
BOOLEAN |
BYTE_ARRAY |
DATE |
DECIMAL |
FILE |
INTEGER |
LONG |
TEXT |
| Modifier and Type | Method and Description |
|---|---|
boolean |
validate(Object object) |
static SType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SType TEXT
public static final SType BOOLEAN
public static final SType DATE
public static final SType INTEGER
public static final SType DECIMAL
public static final SType BYTE_ARRAY
public static final SType FILE
public static final SType LONG
public static SType[] values()
for (SType c : SType.values()) System.out.println(c);
public static SType 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 validate(Object object)
Copyright © 2017 Bonitasoft S.A.. All rights reserved.