Enum JmxServerConnector.Parameters
- java.lang.Object
-
- java.lang.Enum<JmxServerConnector.Parameters>
-
- org.opennms.netmgt.jmx.connection.JmxServerConnector.Parameters
-
- All Implemented Interfaces:
Serializable
,Comparable<JmxServerConnector.Parameters>
- Enclosing interface:
- JmxServerConnector
public static enum JmxServerConnector.Parameters extends Enum<JmxServerConnector.Parameters>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static JmxServerConnector.Parameters
valueOf(String name)
Returns the enum constant of this type with the specified name.static JmxServerConnector.Parameters[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
factory
public static final JmxServerConnector.Parameters factory
-
port
public static final JmxServerConnector.Parameters port
-
protocol
public static final JmxServerConnector.Parameters protocol
-
sunCacao
public static final JmxServerConnector.Parameters sunCacao
-
timeout
public static final JmxServerConnector.Parameters timeout
-
urlPath
public static final JmxServerConnector.Parameters urlPath
-
version
public static final JmxServerConnector.Parameters version
-
-
Method Detail
-
values
public static JmxServerConnector.Parameters[] 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 (JmxServerConnector.Parameters c : JmxServerConnector.Parameters.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static JmxServerConnector.Parameters 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 nameNullPointerException
- if the argument is null
-
-