Enum ServiceParameters.ParameterName
- java.lang.Object
-
- java.lang.Enum<ServiceParameters.ParameterName>
-
- org.opennms.netmgt.collection.api.ServiceParameters.ParameterName
-
- All Implemented Interfaces:
Serializable
,Comparable<ServiceParameters.ParameterName>
- Enclosing class:
- ServiceParameters
public static enum ServiceParameters.ParameterName extends Enum<ServiceParameters.ParameterName>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AUTH_PASSPHRASE
AUTH_PROTOCOL
COLLECTION
DOMAIN
FRIENDLY_NAME
HTTP_COLLECTION
Deprecated.IFALIASCOMMENT
MAX_REPETITIONS
MAX_REQUEST_SIZE
MAX_VARS_PER_PDU
MAXREPETITIONS
Deprecated.NSCLIENT_COLLECTION
Deprecated.PACKAGE_NAME
PORT
PRIVACY_PASSPHRASE
PRIVACY_PROTOCOL
PROXY_HOST
READ_COMMUNITY
READCOMMUNITY
Deprecated.RETRIES
RETRY
SECURITY_NAME
SERVICE
SERVICE_INTERVAL
STOREBYIFALIAS
STOREBYNODEID
STORFLAGOVERRIDE
TIMEOUT
TTL
USE_MBEAN_NAME_FOR_RRDS
VERSION
WMI_COLLECTION
Deprecated.WRITE_COMMUNITY
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description String
toString()
static ServiceParameters.ParameterName
valueOf(String name)
Returns the enum constant of this type with the specified name.static ServiceParameters.ParameterName[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
DOMAIN
public static final ServiceParameters.ParameterName DOMAIN
-
STOREBYNODEID
public static final ServiceParameters.ParameterName STOREBYNODEID
-
STOREBYIFALIAS
public static final ServiceParameters.ParameterName STOREBYIFALIAS
-
STORFLAGOVERRIDE
public static final ServiceParameters.ParameterName STORFLAGOVERRIDE
-
IFALIASCOMMENT
public static final ServiceParameters.ParameterName IFALIASCOMMENT
-
COLLECTION
public static final ServiceParameters.ParameterName COLLECTION
-
HTTP_COLLECTION
@Deprecated public static final ServiceParameters.ParameterName HTTP_COLLECTION
Deprecated.
-
NSCLIENT_COLLECTION
@Deprecated public static final ServiceParameters.ParameterName NSCLIENT_COLLECTION
Deprecated.
-
WMI_COLLECTION
@Deprecated public static final ServiceParameters.ParameterName WMI_COLLECTION
Deprecated.
-
PORT
public static final ServiceParameters.ParameterName PORT
-
RETRY
public static final ServiceParameters.ParameterName RETRY
-
RETRIES
public static final ServiceParameters.ParameterName RETRIES
-
TIMEOUT
public static final ServiceParameters.ParameterName TIMEOUT
-
READ_COMMUNITY
public static final ServiceParameters.ParameterName READ_COMMUNITY
-
READCOMMUNITY
@Deprecated public static final ServiceParameters.ParameterName READCOMMUNITY
Deprecated.
-
WRITE_COMMUNITY
public static final ServiceParameters.ParameterName WRITE_COMMUNITY
-
PROXY_HOST
public static final ServiceParameters.ParameterName PROXY_HOST
-
VERSION
public static final ServiceParameters.ParameterName VERSION
-
MAX_VARS_PER_PDU
public static final ServiceParameters.ParameterName MAX_VARS_PER_PDU
-
MAX_REPETITIONS
public static final ServiceParameters.ParameterName MAX_REPETITIONS
-
MAXREPETITIONS
@Deprecated public static final ServiceParameters.ParameterName MAXREPETITIONS
Deprecated.
-
MAX_REQUEST_SIZE
public static final ServiceParameters.ParameterName MAX_REQUEST_SIZE
-
SECURITY_NAME
public static final ServiceParameters.ParameterName SECURITY_NAME
-
AUTH_PASSPHRASE
public static final ServiceParameters.ParameterName AUTH_PASSPHRASE
-
AUTH_PROTOCOL
public static final ServiceParameters.ParameterName AUTH_PROTOCOL
-
PRIVACY_PASSPHRASE
public static final ServiceParameters.ParameterName PRIVACY_PASSPHRASE
-
PRIVACY_PROTOCOL
public static final ServiceParameters.ParameterName PRIVACY_PROTOCOL
-
USE_MBEAN_NAME_FOR_RRDS
public static final ServiceParameters.ParameterName USE_MBEAN_NAME_FOR_RRDS
-
FRIENDLY_NAME
public static final ServiceParameters.ParameterName FRIENDLY_NAME
-
PACKAGE_NAME
public static final ServiceParameters.ParameterName PACKAGE_NAME
-
SERVICE
public static final ServiceParameters.ParameterName SERVICE
-
SERVICE_INTERVAL
public static final ServiceParameters.ParameterName SERVICE_INTERVAL
-
TTL
public static final ServiceParameters.ParameterName TTL
-
-
Method Detail
-
values
public static ServiceParameters.ParameterName[] 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 (ServiceParameters.ParameterName c : ServiceParameters.ParameterName.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ServiceParameters.ParameterName 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
-
toString
public String toString()
- Overrides:
toString
in classEnum<ServiceParameters.ParameterName>
-
-