Enum Flag.ManifestationFlag
- java.lang.Object
-
- java.lang.Enum<Flag.ManifestationFlag>
-
- io.opentelemetry.javaagent.extension.muzzle.Flag.ManifestationFlag
-
- All Implemented Interfaces:
Flag,Serializable,Comparable<Flag.ManifestationFlag>
- Enclosing interface:
- Flag
public static enum Flag.ManifestationFlag extends Enum<Flag.ManifestationFlag> implements Flag
The constants of this enum describe whether a method or class is abstract, final or non-final.- See Also:
TypeManifestation,MethodManifestation
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface io.opentelemetry.javaagent.extension.muzzle.Flag
Flag.ManifestationFlag, Flag.MinimumVisibilityFlag, Flag.OwnershipFlag, Flag.VisibilityFlag
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ABSTRACTFINALINTERFACENON_FINALNON_INTERFACE
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Flag.ManifestationFlagvalueOf(String name)Returns the enum constant of this type with the specified name.static Flag.ManifestationFlag[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
FINAL
public static final Flag.ManifestationFlag FINAL
-
NON_FINAL
public static final Flag.ManifestationFlag NON_FINAL
-
ABSTRACT
public static final Flag.ManifestationFlag ABSTRACT
-
INTERFACE
public static final Flag.ManifestationFlag INTERFACE
-
NON_INTERFACE
public static final Flag.ManifestationFlag NON_INTERFACE
-
-
Method Detail
-
values
public static Flag.ManifestationFlag[] 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 (Flag.ManifestationFlag c : Flag.ManifestationFlag.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Flag.ManifestationFlag 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
-
-