- All Implemented Interfaces:
Serializable,Comparable<FeeDataType>,Constable
Enum for the fee data types.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionThe resource cost for the transaction type that includes a CryptoTransfer with hook invocationsThe resource cost for the transaction type has no additional attributesThe resource cost for the transaction type includes a ScheduleCreate containing a ContractCall.The resource cost for the transaction type includes a ConsensusSubmitMessage for a topic with custom fees.The resource cost for the transaction type includes an operation on a fungible/common tokenThe resource cost for the transaction type includes an operation on a fungible/common token with a custom fee scheduleThe resource cost for the transaction type includes an operation on a non-fungible/unique tokenThe resource cost for the transaction type includes an operation on a non-fungible/unique token with a custom fee scheduleThe resource cost for the transaction type includes a TopicCreate with custom fees. -
Field Summary
Fields -
Method Summary
Modifier and TypeMethodDescriptiontoString()(package private) static FeeDataTypeReturns the enum constant of this class with the specified name.static FeeDataTypeReturns the enum constant of this class with the specified name.static FeeDataType[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
DEFAULT
The resource cost for the transaction type has no additional attributes -
TOKEN_FUNGIBLE_COMMON
The resource cost for the transaction type includes an operation on a fungible/common token -
TOKEN_NON_FUNGIBLE_UNIQUE
The resource cost for the transaction type includes an operation on a non-fungible/unique token -
TOKEN_FUNGIBLE_COMMON_WITH_CUSTOM_FEES
The resource cost for the transaction type includes an operation on a fungible/common token with a custom fee schedule -
TOKEN_NON_FUNGIBLE_UNIQUE_WITH_CUSTOM_FEES
The resource cost for the transaction type includes an operation on a non-fungible/unique token with a custom fee schedule -
SCHEDULE_CREATE_CONTRACT_CALL
The resource cost for the transaction type includes a ScheduleCreate containing a ContractCall. -
TOPIC_CREATE_WITH_CUSTOM_FEES
The resource cost for the transaction type includes a TopicCreate with custom fees. -
SUBMIT_MESSAGE_WITH_CUSTOM_FEES
The resource cost for the transaction type includes a ConsensusSubmitMessage for a topic with custom fees. -
CRYPTO_TRANSFER_WITH_HOOKS
The resource cost for the transaction type that includes a CryptoTransfer with hook invocations
-
-
Field Details
-
code
-
-
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
-
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:
code- 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
-
toString
- Overrides:
toStringin classEnum<FeeDataType>
-