Enum JxtaConfigConstants
- java.lang.Object
-
- java.lang.Enum<JxtaConfigConstants>
-
- com.sun.enterprise.mgmt.transport.jxta.JxtaConfigConstants
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<JxtaConfigConstants>
public enum JxtaConfigConstants extends java.lang.Enum<JxtaConfigConstants>
Specifies constants that are allowed to be used as keys for configuration elements that are sought to be set or retrieved for/from Jxta platform configuration- Version:
- $Revision$
- Author:
- Shreedhar Ganapathy Date: Jun 22, 2006
-
-
Enum Constant Summary
Enum Constants Enum Constant Description HTTPADDRESSHTTPPORTIS_BOOTSTRAPPING_NODEJXTAHOMEMULTICAST_POOLSIZEPASSWORDPRINCIPALTCP_BLOCKING_QUEUESIZETCP_CORE_POOLSIZETCP_MAX_POOLSIZETCPENDPORTTCPSTARTPORTVIRTUAL_MULTICAST_URI_LIST
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static JxtaConfigConstantsvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static JxtaConfigConstants[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
PRINCIPAL
public static final JxtaConfigConstants PRINCIPAL
-
PASSWORD
public static final JxtaConfigConstants PASSWORD
-
JXTAHOME
public static final JxtaConfigConstants JXTAHOME
-
TCPSTARTPORT
public static final JxtaConfigConstants TCPSTARTPORT
-
TCPENDPORT
public static final JxtaConfigConstants TCPENDPORT
-
HTTPADDRESS
public static final JxtaConfigConstants HTTPADDRESS
-
HTTPPORT
public static final JxtaConfigConstants HTTPPORT
-
IS_BOOTSTRAPPING_NODE
public static final JxtaConfigConstants IS_BOOTSTRAPPING_NODE
-
VIRTUAL_MULTICAST_URI_LIST
public static final JxtaConfigConstants VIRTUAL_MULTICAST_URI_LIST
-
MULTICAST_POOLSIZE
public static final JxtaConfigConstants MULTICAST_POOLSIZE
-
TCP_MAX_POOLSIZE
public static final JxtaConfigConstants TCP_MAX_POOLSIZE
-
TCP_CORE_POOLSIZE
public static final JxtaConfigConstants TCP_CORE_POOLSIZE
-
TCP_BLOCKING_QUEUESIZE
public static final JxtaConfigConstants TCP_BLOCKING_QUEUESIZE
-
-
Method Detail
-
values
public static JxtaConfigConstants[] 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 (JxtaConfigConstants c : JxtaConfigConstants.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static JxtaConfigConstants 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 namejava.lang.NullPointerException- if the argument is null
-
-