Enum Attribute

    • Enum Constant Detail

      • UNKNOWN

        public static final Attribute UNKNOWN
      • AWAIT_INITIAL_RETRIEVAL

        public static final Attribute AWAIT_INITIAL_RETRIEVAL
      • EXTERNAL_HOST

        public static final Attribute EXTERNAL_HOST
      • EXTERNAL_PORT

        public static final Attribute EXTERNAL_PORT
      • HOST_NAME

        public static final Attribute HOST_NAME
      • LAZY_RETRIEVAL

        public static final Attribute LAZY_RETRIEVAL
      • LOCK_TIMEOUT

        public static final Attribute LOCK_TIMEOUT
      • MECHANISMS

        public static final Attribute MECHANISMS
      • NETWORK_PREFIX_OVERRIDE

        public static final Attribute NETWORK_PREFIX_OVERRIDE
      • POLICY

        public static final Attribute POLICY
      • REPLICATION_TIMEOUT

        public static final Attribute REPLICATION_TIMEOUT
      • REQUIRE_SSL_CLIENT_AUTH

        public static final Attribute REQUIRE_SSL_CLIENT_AUTH
      • SECURITY_REALM

        public static final Attribute SECURITY_REALM
      • SERVER_PRINCIPAL

        public static final Attribute SERVER_PRINCIPAL
      • SERVER_NAME

        public static final Attribute SERVER_NAME
      • SOCKET_BINDING

        public static final Attribute SOCKET_BINDING
      • TOPOLOGY_STATE_TRANSFER

        public static final Attribute TOPOLOGY_STATE_TRANSFER
      • STRENGTH

        public static final Attribute STRENGTH
    • Method Detail

      • values

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

        public static Attribute 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
      • toString

        public String toString()