Enum MarkerType

  • All Implemented Interfaces:
    java.io.Serializable, java.lang.Comparable<MarkerType>

    public enum MarkerType
    extends java.lang.Enum<MarkerType>
    • Enum Constant Detail

      • UNKNOWN_MARKER

        public static final MarkerType UNKNOWN_MARKER
      • REPLICATED_SUBSCRIPTION_SNAPSHOT_REQUEST

        public static final MarkerType REPLICATED_SUBSCRIPTION_SNAPSHOT_REQUEST
      • REPLICATED_SUBSCRIPTION_SNAPSHOT_RESPONSE

        public static final MarkerType REPLICATED_SUBSCRIPTION_SNAPSHOT_RESPONSE
      • REPLICATED_SUBSCRIPTION_SNAPSHOT

        public static final MarkerType REPLICATED_SUBSCRIPTION_SNAPSHOT
      • REPLICATED_SUBSCRIPTION_UPDATE

        public static final MarkerType REPLICATED_SUBSCRIPTION_UPDATE
      • TXN_COMMITTING

        public static final MarkerType TXN_COMMITTING
      • TXN_COMMIT

        public static final MarkerType TXN_COMMIT
      • TXN_ABORT

        public static final MarkerType TXN_ABORT
    • Field Detail

      • REPLICATED_SUBSCRIPTION_SNAPSHOT_REQUEST_VALUE

        public static final int REPLICATED_SUBSCRIPTION_SNAPSHOT_REQUEST_VALUE
        See Also:
        Constant Field Values
      • REPLICATED_SUBSCRIPTION_SNAPSHOT_RESPONSE_VALUE

        public static final int REPLICATED_SUBSCRIPTION_SNAPSHOT_RESPONSE_VALUE
        See Also:
        Constant Field Values
      • REPLICATED_SUBSCRIPTION_SNAPSHOT_VALUE

        public static final int REPLICATED_SUBSCRIPTION_SNAPSHOT_VALUE
        See Also:
        Constant Field Values
      • REPLICATED_SUBSCRIPTION_UPDATE_VALUE

        public static final int REPLICATED_SUBSCRIPTION_UPDATE_VALUE
        See Also:
        Constant Field Values
    • Method Detail

      • values

        public static MarkerType[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (MarkerType c : MarkerType.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static MarkerType valueOf​(java.lang.String name)
        Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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:
        java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
        java.lang.NullPointerException - if the argument is null
      • getValue

        public int getValue()
      • valueOf

        public static MarkerType valueOf​(int n)
        Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
        Parameters:
        n - the name of the enum constant to be returned.
        Returns:
        the enum constant with the specified name
        Throws:
        java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
        java.lang.NullPointerException - if the argument is null