Enum Class MessageFlag

java.lang.Object
java.lang.Enum<MessageFlag>
tech.deplant.java4ever.framework.MessageFlag
All Implemented Interfaces:
Serializable, Comparable<MessageFlag>, Constable

public enum MessageFlag extends Enum<MessageFlag>
  • Enum Constant Details

    • EXACT_VALUE_GAS

      public static final MessageFlag EXACT_VALUE_GAS
      Sends exact 'value' amount of EVERs
    • ALL_MESSAGE_GAS

      public static final MessageFlag ALL_MESSAGE_GAS
      Sends all EVERs that came with this message (value is ignored)
    • ALL_BALANCE_GAS

      public static final MessageFlag ALL_BALANCE_GAS
      Sends all remaining EVERs of this contract (value is ignored)
    • FEE_EXTRA

      public static final MessageFlag FEE_EXTRA
      Subtract extra funds from sender's balance to pay forward fee
    • IGNORE_ERRORS

      public static final MessageFlag IGNORE_ERRORS
      Any errors arising during the action phase should be ignored.
    • SELF_DESTROY

      public static final MessageFlag SELF_DESTROY
      Try to destroy sender contract (if balance is 0)
    • DRAIN_AND_DESTROY

      public static final MessageFlag DRAIN_AND_DESTROY
      Complex case: ALL_BALANCE_GAS + SELF_DESTROY + IGNORE_ERRORS
  • Method Details

    • values

      public static MessageFlag[] 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

      public static MessageFlag valueOf(String name)
      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 name
      NullPointerException - if the argument is null
    • flag

      public int flag()