public enum ParameterName extends Enum<ParameterName>
| Enum Constant and Description | 
|---|
COLLECTION  | 
FRIENDLY_NAME  | 
PORT  | 
RETRY  | 
USE_MBEAN_NAME_FOR_RRDS  | 
| Modifier and Type | Method and Description | 
|---|---|
String | 
toString()  | 
static ParameterName | 
valueOf(String name)
Returns the enum constant of this type with the specified name. 
 | 
static ParameterName[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final ParameterName COLLECTION
public static final ParameterName RETRY
public static final ParameterName FRIENDLY_NAME
public static final ParameterName PORT
public static final ParameterName USE_MBEAN_NAME_FOR_RRDS
public static ParameterName[] values()
for (ParameterName c : ParameterName.values()) System.out.println(c);
public static ParameterName valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic String toString()
toString in class Enum<ParameterName>Copyright © 2021. All rights reserved.