Enum KadminReply

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

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

      • ERROR_OCCURED

        public static final KadminReply ERROR_OCCURED
      • PRINCIPAL_ALREADY_CREATED

        public static final KadminReply PRINCIPAL_ALREADY_CREATED
      • PRINCIPAL_ALREADY_DELETED

        public static final KadminReply PRINCIPAL_ALREADY_DELETED
      • OPERATION_NOT_PERMITTED

        public static final KadminReply OPERATION_NOT_PERMITTED
      • NO_REPLY_FOUND

        public static final KadminReply NO_REPLY_FOUND
      • PRINCIPAL_CREATED

        public static final KadminReply PRINCIPAL_CREATED
      • PRINCIPAL_DELETED

        public static final KadminReply PRINCIPAL_DELETED
    • Method Detail

      • values

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

        public static KadminReply 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
      • getRegExp

        public java.lang.String getRegExp()