Package org.epics.ca
Enum Context.Configuration
- java.lang.Object
-
- java.lang.Enum<Context.Configuration>
-
- org.epics.ca.Context.Configuration
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<Context.Configuration>
- Enclosing class:
- Context
public static enum Context.Configuration extends java.lang.Enum<Context.Configuration>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description EPICS_CA_ADDR_LISTEPICS_CA_AUTO_ADDR_LISTEPICS_CA_BEACON_PERIODEPICS_CA_CONN_TMOEPICS_CA_MAX_ARRAY_BYTESEPICS_CA_REPEATER_PORTEPICS_CA_SERVER_PORT
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Context.ConfigurationvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static Context.Configuration[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
EPICS_CA_ADDR_LIST
public static final Context.Configuration EPICS_CA_ADDR_LIST
-
EPICS_CA_AUTO_ADDR_LIST
public static final Context.Configuration EPICS_CA_AUTO_ADDR_LIST
-
EPICS_CA_CONN_TMO
public static final Context.Configuration EPICS_CA_CONN_TMO
-
EPICS_CA_BEACON_PERIOD
public static final Context.Configuration EPICS_CA_BEACON_PERIOD
-
EPICS_CA_REPEATER_PORT
public static final Context.Configuration EPICS_CA_REPEATER_PORT
-
EPICS_CA_SERVER_PORT
public static final Context.Configuration EPICS_CA_SERVER_PORT
-
EPICS_CA_MAX_ARRAY_BYTES
public static final Context.Configuration EPICS_CA_MAX_ARRAY_BYTES
-
-
Method Detail
-
values
public static Context.Configuration[] 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 (Context.Configuration c : Context.Configuration.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Context.Configuration 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
-
-