public enum IntegerType extends Enum<IntegerType>
| Enum Constant and Description |
|---|
INTEGER_16
Integer with at most 16 bits
|
INTEGER_32
Integer with at most 32 bits
|
INTEGER_64
Integer with at most 64 bits
|
INTEGER_8
Integer with at most 8 bits
|
INTEGER_BIG
Integer with arbitrary number of bits
|
UNSIGNED_INTEGER_16
Unsigned Integer with at most 16 bits
|
UNSIGNED_INTEGER_32
Unsigned Integer with at most 32 bits
|
UNSIGNED_INTEGER_64
Unsigned Integer with at most 64 bits
|
UNSIGNED_INTEGER_8
Unsigned Integer with at most 8 bits
|
UNSIGNED_INTEGER_BIG
Unsigned Integer with arbitrary number of bits
|
| Modifier and Type | Method and Description |
|---|---|
boolean |
isUnsigned() |
static IntegerType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static IntegerType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IntegerType UNSIGNED_INTEGER_8
public static final IntegerType UNSIGNED_INTEGER_16
public static final IntegerType UNSIGNED_INTEGER_32
public static final IntegerType UNSIGNED_INTEGER_64
public static final IntegerType UNSIGNED_INTEGER_BIG
public static final IntegerType INTEGER_8
public static final IntegerType INTEGER_16
public static final IntegerType INTEGER_32
public static final IntegerType INTEGER_64
public static final IntegerType INTEGER_BIG
public static IntegerType[] values()
for (IntegerType c : IntegerType.values()) System.out.println(c);
public static IntegerType 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 isUnsigned()
Copyright © 2018 Siemens AG. All rights reserved.