Module java4ever.framework
Enum Class AbiTypePrefix
- All Implemented Interfaces:
Serializable,Comparable<AbiTypePrefix>,Constable
The enum Abi type prefix.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionAddress abi type prefix.Bool abi type prefix.Builder abi type prefix.Byte abi type prefix.Bytes abi type prefix.Cell abi type prefix.Int abi type prefix.Optional abi type prefix.Slice abi type prefix.String abi type prefix.Tuple abi type prefix.Uint abi type prefix. -
Method Summary
Modifier and TypeMethodDescriptionstatic AbiTypePrefixReturns the enum constant of this class with the specified name.static AbiTypePrefix[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
INT
Int abi type prefix. -
UINT
Uint abi type prefix. -
STRING
String abi type prefix. -
BYTE
Byte abi type prefix. -
BYTES
Bytes abi type prefix. -
ADDRESS
Address abi type prefix. -
BOOL
Bool abi type prefix. -
CELL
Cell abi type prefix. -
SLICE
Slice abi type prefix. -
BUILDER
Builder abi type prefix. -
OPTIONAL
Optional abi type prefix. -
TUPLE
Tuple abi type prefix.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum class has no constant with the specified nameNullPointerException- if the argument is null
-