com.hazelcast.client
Enum ClientProperties.ClientPropertyName

java.lang.Object
  extended by java.lang.Enum<ClientProperties.ClientPropertyName>
      extended by com.hazelcast.client.ClientProperties.ClientPropertyName
All Implemented Interfaces:
Serializable, Comparable<ClientProperties.ClientPropertyName>
Enclosing class:
ClientProperties

public static enum ClientProperties.ClientPropertyName
extends Enum<ClientProperties.ClientPropertyName>


Enum Constant Summary
CONNECTION_TIMEOUT
           
GROUP_NAME
           
GROUP_PASSWORD
           
INIT_CONNECTION_ATTEMPTS_LIMIT
           
RECONNECTION_ATTEMPTS_LIMIT
           
RECONNECTION_TIMEOUT
           
 
Method Summary
static ClientProperties.ClientPropertyName fromValue(String name)
           
 String getDefaultValue()
           
 String getName()
           
static ClientProperties.ClientPropertyName valueOf(String name)
          Returns the enum constant of this type with the specified name.
static ClientProperties.ClientPropertyName[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

GROUP_NAME

public static final ClientProperties.ClientPropertyName GROUP_NAME

GROUP_PASSWORD

public static final ClientProperties.ClientPropertyName GROUP_PASSWORD

INIT_CONNECTION_ATTEMPTS_LIMIT

public static final ClientProperties.ClientPropertyName INIT_CONNECTION_ATTEMPTS_LIMIT

RECONNECTION_ATTEMPTS_LIMIT

public static final ClientProperties.ClientPropertyName RECONNECTION_ATTEMPTS_LIMIT

CONNECTION_TIMEOUT

public static final ClientProperties.ClientPropertyName CONNECTION_TIMEOUT

RECONNECTION_TIMEOUT

public static final ClientProperties.ClientPropertyName RECONNECTION_TIMEOUT
Method Detail

values

public static ClientProperties.ClientPropertyName[] 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 (ClientProperties.ClientPropertyName c : ClientProperties.ClientPropertyName.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static ClientProperties.ClientPropertyName 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

getName

public String getName()

getDefaultValue

public String getDefaultValue()

fromValue

public static ClientProperties.ClientPropertyName fromValue(String name)


Copyright © 2012 Hazel Bilisim Ltd.. All Rights Reserved.