Enum TryWithResourcesJavacFilter.Matcher.JavacPattern
- java.lang.Object
-
- java.lang.Enum<TryWithResourcesJavacFilter.Matcher.JavacPattern>
-
- org.jacoco.core.internal.analysis.filter.TryWithResourcesJavacFilter.Matcher.JavacPattern
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<TryWithResourcesJavacFilter.Matcher.JavacPattern>
- Enclosing class:
- TryWithResourcesJavacFilter.Matcher
private static enum TryWithResourcesJavacFilter.Matcher.JavacPattern extends java.lang.Enum<TryWithResourcesJavacFilter.Matcher.JavacPattern>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description FULLresource is loaded before primaryExc and both are checked onnullMETHODresource is loaded before primaryExc and checked onnull, method$closeResourceis usedOMITTED_NULL_CHECKresource is loaded after primaryExc,nullcheck of resource is omittedOPTIMALresource is loaded after primaryExc,nullcheck of resource is omitted, method$closeResourceis used
-
Constructor Summary
Constructors Modifier Constructor Description privateJavacPattern()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static TryWithResourcesJavacFilter.Matcher.JavacPatternvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static TryWithResourcesJavacFilter.Matcher.JavacPattern[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
OPTIMAL
public static final TryWithResourcesJavacFilter.Matcher.JavacPattern OPTIMAL
resource is loaded after primaryExc,nullcheck of resource is omitted, method$closeResourceis used
-
FULL
public static final TryWithResourcesJavacFilter.Matcher.JavacPattern FULL
resource is loaded before primaryExc and both are checked onnull
-
OMITTED_NULL_CHECK
public static final TryWithResourcesJavacFilter.Matcher.JavacPattern OMITTED_NULL_CHECK
resource is loaded after primaryExc,nullcheck of resource is omitted
-
METHOD
public static final TryWithResourcesJavacFilter.Matcher.JavacPattern METHOD
resource is loaded before primaryExc and checked onnull, method$closeResourceis used
-
-
Method Detail
-
values
public static TryWithResourcesJavacFilter.Matcher.JavacPattern[] 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 (TryWithResourcesJavacFilter.Matcher.JavacPattern c : TryWithResourcesJavacFilter.Matcher.JavacPattern.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TryWithResourcesJavacFilter.Matcher.JavacPattern valueOf(java.lang.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:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
-