Enum Class JournalStatus

java.lang.Object
java.lang.Enum<JournalStatus>
io.debezium.ibmi.db2.journal.retrieve.rnrn0200.JournalStatus
All Implemented Interfaces:
Serializable, Comparable<JournalStatus>, Constable

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

  • Field Details

    • type

      private final int type
  • Constructor Details

    • JournalStatus

      private JournalStatus(int type)
  • Method Details

    • values

      public static JournalStatus[] 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 JournalStatus 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
    • valueOf

      public static JournalStatus valueOf(int value)
      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:
      value - 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
    • valueOfString

      public static JournalStatus valueOfString(String svalue)