public enum JPRACheckerErrorCode extends Enum<JPRACheckerErrorCode>
| Enum Constant and Description |
|---|
BOOLEAN_SET_SIZE_INVALID
An invalid boolean set size was specified.
|
BOOLEAN_SET_SIZE_TOO_SMALL
Not enough space was allocated to hold all of the fields in a boolean set.
|
MATRIX_NON_SCALAR_TYPE
A non-scalar type was specified as the type of
matrix elements. |
MATRIX_SIZE_FLOAT_UNSUPPORTED
An unsupported
float size was specified as a vector
element. |
MATRIX_SIZE_INTEGER_UNSUPPORTED
An unsupported
integer size was specified as a vector
element. |
MATRIX_SIZE_UNSUPPORTED
An unsupported
matrix size was specified. |
PACKED_NON_INTEGER
A non-
integer type was specified as a field of a packed
type. |
PACKED_SIZE_NOT_SUPPORTED
A
packed type size is not supported. |
PADDING_SIZE_INVALID
An invalid padding size was specified.
|
RECORD_FLOAT_SIZE_UNSUPPORTED
The specified
float size is not supported when being used as a
record field. |
RECORD_INTEGER_SIZE_UNSUPPORTED
The specified
integer size is not supported when being used as a
record field. |
STRING_ENCODING_UNSUPPORTED
An unsupported string encoding was specified.
|
VECTOR_NON_SCALAR_TYPE
A non-scalar type was specified as the type of
vector elements. |
VECTOR_SIZE_FLOAT_UNSUPPORTED
An unsupported
float size was specified as a vector
element. |
VECTOR_SIZE_INTEGER_UNSUPPORTED
An unsupported
integer size was specified as a vector
element. |
VECTOR_SIZE_UNSUPPORTED
An unsupported
vector size was specified. |
| Modifier and Type | Method and Description |
|---|---|
static JPRACheckerErrorCode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static JPRACheckerErrorCode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JPRACheckerErrorCode RECORD_FLOAT_SIZE_UNSUPPORTED
float size is not supported when being used as a
record field.public static final JPRACheckerErrorCode STRING_ENCODING_UNSUPPORTED
public static final JPRACheckerErrorCode BOOLEAN_SET_SIZE_INVALID
public static final JPRACheckerErrorCode BOOLEAN_SET_SIZE_TOO_SMALL
public static final JPRACheckerErrorCode VECTOR_SIZE_UNSUPPORTED
vector size was specified.public static final JPRACheckerErrorCode VECTOR_NON_SCALAR_TYPE
vector elements.public static final JPRACheckerErrorCode VECTOR_SIZE_INTEGER_UNSUPPORTED
integer size was specified as a vector
element.public static final JPRACheckerErrorCode VECTOR_SIZE_FLOAT_UNSUPPORTED
float size was specified as a vector
element.public static final JPRACheckerErrorCode MATRIX_SIZE_UNSUPPORTED
matrix size was specified.public static final JPRACheckerErrorCode MATRIX_NON_SCALAR_TYPE
matrix elements.public static final JPRACheckerErrorCode MATRIX_SIZE_INTEGER_UNSUPPORTED
integer size was specified as a vector
element.public static final JPRACheckerErrorCode MATRIX_SIZE_FLOAT_UNSUPPORTED
float size was specified as a vector
element.public static final JPRACheckerErrorCode PADDING_SIZE_INVALID
public static final JPRACheckerErrorCode PACKED_NON_INTEGER
integer type was specified as a field of a packed
type.public static final JPRACheckerErrorCode PACKED_SIZE_NOT_SUPPORTED
packed type size is not supported.public static final JPRACheckerErrorCode RECORD_INTEGER_SIZE_UNSUPPORTED
integer size is not supported when being used as a
record field.public static JPRACheckerErrorCode[] values()
for (JPRACheckerErrorCode c : JPRACheckerErrorCode.values()) System.out.println(c);
public static JPRACheckerErrorCode 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 © 2015 <code@io7m.com> http://io7m.com