Package com.javahollic.jira.emh.api
Enum IJEMHFieldProcessorKeys.AvailableProcessors
- java.lang.Object
-
- java.lang.Enum<IJEMHFieldProcessorKeys.AvailableProcessors>
-
- com.javahollic.jira.emh.api.IJEMHFieldProcessorKeys.AvailableProcessors
-
- All Implemented Interfaces:
Serializable
,Comparable<IJEMHFieldProcessorKeys.AvailableProcessors>
- Enclosing interface:
- IJEMHFieldProcessorKeys
public static enum IJEMHFieldProcessorKeys.AvailableProcessors extends Enum<IJEMHFieldProcessorKeys.AvailableProcessors>
Defines JEMH provided field processors TODO - script
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static IJEMHFieldProcessorKeys.AvailableProcessors
valueOf(String name)
Returns the enum constant of this type with the specified name.static IJEMHFieldProcessorKeys.AvailableProcessors[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
basic
public static final IJEMHFieldProcessorKeys.AvailableProcessors basic
-
atprefix
public static final IJEMHFieldProcessorKeys.AvailableProcessors atprefix
-
colonsuffix
public static final IJEMHFieldProcessorKeys.AvailableProcessors colonsuffix
-
subject
public static final IJEMHFieldProcessorKeys.AvailableProcessors subject
-
regexp
public static final IJEMHFieldProcessorKeys.AvailableProcessors regexp
-
xml
public static final IJEMHFieldProcessorKeys.AvailableProcessors xml
-
csv
public static final IJEMHFieldProcessorKeys.AvailableProcessors csv
-
xheader
public static final IJEMHFieldProcessorKeys.AvailableProcessors xheader
-
nagios
public static final IJEMHFieldProcessorKeys.AvailableProcessors nagios
-
webform
public static final IJEMHFieldProcessorKeys.AvailableProcessors webform
-
script
public static final IJEMHFieldProcessorKeys.AvailableProcessors script
-
-
Method Detail
-
values
public static IJEMHFieldProcessorKeys.AvailableProcessors[] 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 (IJEMHFieldProcessorKeys.AvailableProcessors c : IJEMHFieldProcessorKeys.AvailableProcessors.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static IJEMHFieldProcessorKeys.AvailableProcessors 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
-
-