-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionSends all remaining EVERs of this contract (value is ignored)Sends all EVERs that came with this message (value is ignored)Complex case: ALL_BALANCE_GAS + SELF_DESTROY + IGNORE_ERRORSSends exact 'value' amount of EVERsSubtract extra funds from sender's balance to pay forward feeAny errors arising during the action phase should be ignored.Try to destroy sender contract (if balance is 0) -
Method Summary
Modifier and TypeMethodDescriptionint
flag()
Flag int.static MessageFlag
Returns the enum constant of this class with the specified name.static MessageFlag[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
EXACT_VALUE_GAS
Sends exact 'value' amount of EVERs -
ALL_MESSAGE_GAS
Sends all EVERs that came with this message (value is ignored) -
ALL_BALANCE_GAS
Sends all remaining EVERs of this contract (value is ignored) -
FEE_EXTRA
Subtract extra funds from sender's balance to pay forward fee -
IGNORE_ERRORS
Any errors arising during the action phase should be ignored. -
SELF_DESTROY
Try to destroy sender contract (if balance is 0) -
DRAIN_AND_DESTROY
Complex case: ALL_BALANCE_GAS + SELF_DESTROY + IGNORE_ERRORS
-
-
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
-
flag
public int flag()Flag int.- Returns:
- the int
-