Package org.spdx.utility.compare
Enum FilterTemplateOutputHandler.VarTextHandling
- java.lang.Object
-
- java.lang.Enum<FilterTemplateOutputHandler.VarTextHandling>
-
- org.spdx.utility.compare.FilterTemplateOutputHandler.VarTextHandling
-
- All Implemented Interfaces:
Serializable
,Comparable<FilterTemplateOutputHandler.VarTextHandling>
- Enclosing class:
- FilterTemplateOutputHandler
public static enum FilterTemplateOutputHandler.VarTextHandling extends Enum<FilterTemplateOutputHandler.VarTextHandling>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static FilterTemplateOutputHandler.VarTextHandling
valueOf(String name)
Returns the enum constant of this type with the specified name.static FilterTemplateOutputHandler.VarTextHandling[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
OMIT
public static final FilterTemplateOutputHandler.VarTextHandling OMIT
Omit the var text all together
-
ORIGINAL
public static final FilterTemplateOutputHandler.VarTextHandling ORIGINAL
Include the original text for the regex
-
REGEX
public static final FilterTemplateOutputHandler.VarTextHandling REGEX
Include the regex itself included by the REGEX_ESCAPE strings
-
-
Method Detail
-
values
public static FilterTemplateOutputHandler.VarTextHandling[] 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 (FilterTemplateOutputHandler.VarTextHandling c : FilterTemplateOutputHandler.VarTextHandling.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static FilterTemplateOutputHandler.VarTextHandling 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
-
-