Enum KahaEntryType

    • Enum Constant Detail

      • KAHA_TRACE_COMMAND

        public static final KahaEntryType KAHA_TRACE_COMMAND
      • KAHA_ADD_MESSAGE_COMMAND

        public static final KahaEntryType KAHA_ADD_MESSAGE_COMMAND
      • KAHA_REMOVE_MESSAGE_COMMAND

        public static final KahaEntryType KAHA_REMOVE_MESSAGE_COMMAND
      • KAHA_PREPARE_COMMAND

        public static final KahaEntryType KAHA_PREPARE_COMMAND
      • KAHA_COMMIT_COMMAND

        public static final KahaEntryType KAHA_COMMIT_COMMAND
      • KAHA_ROLLBACK_COMMAND

        public static final KahaEntryType KAHA_ROLLBACK_COMMAND
      • KAHA_REMOVE_DESTINATION_COMMAND

        public static final KahaEntryType KAHA_REMOVE_DESTINATION_COMMAND
      • KAHA_SUBSCRIPTION_COMMAND

        public static final KahaEntryType KAHA_SUBSCRIPTION_COMMAND
      • KAHA_PRODUCER_AUDIT_COMMAND

        public static final KahaEntryType KAHA_PRODUCER_AUDIT_COMMAND
      • KAHA_ACK_MESSAGE_FILE_MAP_COMMAND

        public static final KahaEntryType KAHA_ACK_MESSAGE_FILE_MAP_COMMAND
      • KAHA_UPDATE_MESSAGE_COMMAND

        public static final KahaEntryType KAHA_UPDATE_MESSAGE_COMMAND
      • KAHA_ADD_SCHEDULED_JOB_COMMAND

        public static final KahaEntryType KAHA_ADD_SCHEDULED_JOB_COMMAND
      • KAHA_RESCHEDULE_JOB_COMMAND

        public static final KahaEntryType KAHA_RESCHEDULE_JOB_COMMAND
      • KAHA_REMOVE_SCHEDULED_JOB_COMMAND

        public static final KahaEntryType KAHA_REMOVE_SCHEDULED_JOB_COMMAND
      • KAHA_REMOVE_SCHEDULED_JOBS_COMMAND

        public static final KahaEntryType KAHA_REMOVE_SCHEDULED_JOBS_COMMAND
      • KAHA_DESTROY_SCHEDULER_COMMAND

        public static final KahaEntryType KAHA_DESTROY_SCHEDULER_COMMAND
      • KAHA_REWRITTEN_DATA_FILE_COMMAND

        public static final KahaEntryType KAHA_REWRITTEN_DATA_FILE_COMMAND
    • Method Detail

      • values

        public static KahaEntryType[] 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 (KahaEntryType c : KahaEntryType.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static KahaEntryType valueOf​(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:
        IllegalArgumentException - if this enum type has no constant with the specified name
        NullPointerException - if the argument is null
      • getNumber

        public final int getNumber()
      • valueOf

        public static KahaEntryType valueOf​(int value)
        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:
        value - the name of the enum constant to be returned.
        Returns:
        the enum constant with the specified name
        Throws:
        IllegalArgumentException - if this enum type has no constant with the specified name
        NullPointerException - if the argument is null
      • createMessage

        public org.apache.activemq.protobuf.Message createMessage()