Enum ApplyRegex.REGEX_TYPES
- java.lang.Object
-
- java.lang.Enum<ApplyRegex.REGEX_TYPES>
-
- org.gcube.application.cms.sdi.model.ApplyRegex.REGEX_TYPES
-
- All Implemented Interfaces:
Serializable,Comparable<ApplyRegex.REGEX_TYPES>
- Enclosing class:
- ApplyRegex
public static enum ApplyRegex.REGEX_TYPES extends Enum<ApplyRegex.REGEX_TYPES>
The Enum REGEX_TYPES.- Author:
- Francesco Mangiacrapa at ISTI-CNR francesco.mangiacrapa@isti.cnr.it Dec 21, 2023
-
-
Enum Constant Summary
Enum Constants Enum Constant Description findreplaceAllreplaceFirst
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ApplyRegex.REGEX_TYPESvalueOf(String name)Returns the enum constant of this type with the specified name.static ApplyRegex.REGEX_TYPES[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
replaceAll
public static final ApplyRegex.REGEX_TYPES replaceAll
-
replaceFirst
public static final ApplyRegex.REGEX_TYPES replaceFirst
-
find
public static final ApplyRegex.REGEX_TYPES find
-
-
Method Detail
-
values
public static ApplyRegex.REGEX_TYPES[] 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 (ApplyRegex.REGEX_TYPES c : ApplyRegex.REGEX_TYPES.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ApplyRegex.REGEX_TYPES 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
-
-