public enum SDATATYPE extends Enum<SDATATYPE>
| Enum Constant and Description |
|---|
SBOOLEAN |
SFLOAT |
SNUMERIC |
SOBJECT |
STEXT |
SURI |
| Modifier and Type | Method and Description |
|---|---|
static SDATATYPE |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SDATATYPE[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SDATATYPE STEXT
public static final SDATATYPE SBOOLEAN
public static final SDATATYPE SNUMERIC
public static final SDATATYPE SFLOAT
public static final SDATATYPE SURI
public static final SDATATYPE SOBJECT
public static SDATATYPE[] values()
for (SDATATYPE c : SDATATYPE.values()) System.out.println(c);
public static SDATATYPE 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 © 2009–2019 Humboldt-Universität zu Berlin, INRIA. All rights reserved.