Package com.saperion.config
Enum SaJMXConstants.ConfigVariant
- java.lang.Object
-
- java.lang.Enum<SaJMXConstants.ConfigVariant>
-
- com.saperion.config.SaJMXConstants.ConfigVariant
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<SaJMXConstants.ConfigVariant>
- Enclosing class:
- SaJMXConstants
public static enum SaJMXConstants.ConfigVariant extends java.lang.Enum<SaJMXConstants.ConfigVariant>
Configuration variants for central JMX configuration.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CC
Classic connector configuration.JCR
JCR configuration.NONE
not configured.RMI_SERVER
RMI server configuration.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static SaJMXConstants.ConfigVariant
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static SaJMXConstants.ConfigVariant[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NONE
public static final SaJMXConstants.ConfigVariant NONE
not configured.
-
RMI_SERVER
public static final SaJMXConstants.ConfigVariant RMI_SERVER
RMI server configuration.
-
CC
public static final SaJMXConstants.ConfigVariant CC
Classic connector configuration.
-
JCR
public static final SaJMXConstants.ConfigVariant JCR
JCR configuration.
-
-
Method Detail
-
values
public static SaJMXConstants.ConfigVariant[] 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 (SaJMXConstants.ConfigVariant c : SaJMXConstants.ConfigVariant.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SaJMXConstants.ConfigVariant 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
-
-