public enum JCGLScalarIntegralType extends Enum<JCGLScalarIntegralType>
| Enum Constant and Description |
|---|
TYPE_BYTE
A signed 8-bit integer.
|
TYPE_INT
A signed 32-bit integer.
|
TYPE_SHORT
A signed 16-bit integer.
|
TYPE_UNSIGNED_BYTE
An unsigned 8-bit integer.
|
TYPE_UNSIGNED_INT
An unsigned 32-bit integer.
|
TYPE_UNSIGNED_SHORT
An unsigned 16-bit integer.
|
| Modifier and Type | Method and Description |
|---|---|
static JCGLScalarIntegralType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static JCGLScalarIntegralType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JCGLScalarIntegralType TYPE_BYTE
public static final JCGLScalarIntegralType TYPE_INT
public static final JCGLScalarIntegralType TYPE_SHORT
public static final JCGLScalarIntegralType TYPE_UNSIGNED_BYTE
public static final JCGLScalarIntegralType TYPE_UNSIGNED_INT
public static final JCGLScalarIntegralType TYPE_UNSIGNED_SHORT
public static JCGLScalarIntegralType[] values()
for (JCGLScalarIntegralType c : JCGLScalarIntegralType.values()) System.out.println(c);
public static JCGLScalarIntegralType 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 © 2016 <code@io7m.com> http://io7m.com