public enum SPrimitiveEnum extends Enum<SPrimitiveEnum>
| Enum Constant and Description |
|---|
BOOLEAN |
BYTE_ARRAY |
DOUBLE |
LONG |
STRING |
| Modifier and Type | Method and Description |
|---|---|
int |
getOrdinal() |
static SPrimitiveEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SPrimitiveEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SPrimitiveEnum LONG
public static final SPrimitiveEnum DOUBLE
public static final SPrimitiveEnum BOOLEAN
public static final SPrimitiveEnum STRING
public static final SPrimitiveEnum BYTE_ARRAY
public static SPrimitiveEnum[] values()
for (SPrimitiveEnum c : SPrimitiveEnum.values()) System.out.println(c);
public static SPrimitiveEnum 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 int getOrdinal()
Copyright © 2016 OpenSource BIM. All rights reserved.