Package com.dremio.nessie.hms.annotation
Enum MethodSignature.SigType
- java.lang.Object
-
- java.lang.Enum<MethodSignature.SigType>
-
- com.dremio.nessie.hms.annotation.MethodSignature.SigType
-
- All Implemented Interfaces:
Serializable,Comparable<MethodSignature.SigType>
- Enclosing class:
- MethodSignature
public static enum MethodSignature.SigType extends Enum<MethodSignature.SigType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description EXTENDEDORIGORIG_EXTEND
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static MethodSignature.SigTypevalueOf(String name)Returns the enum constant of this type with the specified name.static MethodSignature.SigType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ORIG
public static final MethodSignature.SigType ORIG
-
ORIG_EXTEND
public static final MethodSignature.SigType ORIG_EXTEND
-
EXTENDED
public static final MethodSignature.SigType EXTENDED
-
-
Method Detail
-
values
public static MethodSignature.SigType[] 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 (MethodSignature.SigType c : MethodSignature.SigType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static MethodSignature.SigType 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
-
-