Package org.spdx.utility.compare
Enum FilterTemplateOutputHandler.OptionalTextHandling
- java.lang.Object
-
- java.lang.Enum<FilterTemplateOutputHandler.OptionalTextHandling>
-
- org.spdx.utility.compare.FilterTemplateOutputHandler.OptionalTextHandling
-
- All Implemented Interfaces:
Serializable
,Comparable<FilterTemplateOutputHandler.OptionalTextHandling>
- Enclosing class:
- FilterTemplateOutputHandler
public static enum FilterTemplateOutputHandler.OptionalTextHandling extends Enum<FilterTemplateOutputHandler.OptionalTextHandling>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description OMIT
Omit the optional textORIGINAL
Retain the optional textREGEX_USING_TOKENS
Create a regex for the optional text with the REGEX_ESCAPE string tokenizing the words
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static FilterTemplateOutputHandler.OptionalTextHandling
valueOf(String name)
Returns the enum constant of this type with the specified name.static FilterTemplateOutputHandler.OptionalTextHandling[]
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.OptionalTextHandling OMIT
Omit the optional text
-
ORIGINAL
public static final FilterTemplateOutputHandler.OptionalTextHandling ORIGINAL
Retain the optional text
-
REGEX_USING_TOKENS
public static final FilterTemplateOutputHandler.OptionalTextHandling REGEX_USING_TOKENS
Create a regex for the optional text with the REGEX_ESCAPE string tokenizing the words
-
-
Method Detail
-
values
public static FilterTemplateOutputHandler.OptionalTextHandling[] 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.OptionalTextHandling c : FilterTemplateOutputHandler.OptionalTextHandling.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.OptionalTextHandling 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
-
-