Package spoon.reflect.declaration
Enum ModifierKind
- java.lang.Object
-
- java.lang.Enum<ModifierKind>
-
- spoon.reflect.declaration.ModifierKind
-
- All Implemented Interfaces:
Serializable
,Comparable<ModifierKind>
public enum ModifierKind extends Enum<ModifierKind>
Represents a modifier on the declaration of a program element such as a class, method, or field. The order is important, because it is always pretty--printed is this order, enabling to have a JLS-compliant, checkstyle compliant generated code (thanks to EnumSet used for modifiers).
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ABSTRACT
The modifier abstractFINAL
The modifier finalNATIVE
The modifier nativePRIVATE
The modifier privatePROTECTED
The modifier protectedPUBLIC
The modifier publicSTATIC
The modifier staticSTRICTFP
The modifier strictfpSYNCHRONIZED
The modifier synchronizedTRANSIENT
The modifier transientVOLATILE
The modifier volatile
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description String
toString()
Returns this modifier's name in lowercase.static ModifierKind
valueOf(String name)
Returns the enum constant of this type with the specified name.static ModifierKind[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
PUBLIC
public static final ModifierKind PUBLIC
The modifier public
-
PROTECTED
public static final ModifierKind PROTECTED
The modifier protected
-
PRIVATE
public static final ModifierKind PRIVATE
The modifier private
-
ABSTRACT
public static final ModifierKind ABSTRACT
The modifier abstract
-
STATIC
public static final ModifierKind STATIC
The modifier static
-
FINAL
public static final ModifierKind FINAL
The modifier final
-
TRANSIENT
public static final ModifierKind TRANSIENT
The modifier transient
-
VOLATILE
public static final ModifierKind VOLATILE
The modifier volatile
-
SYNCHRONIZED
public static final ModifierKind SYNCHRONIZED
The modifier synchronized
-
NATIVE
public static final ModifierKind NATIVE
The modifier native
-
STRICTFP
public static final ModifierKind STRICTFP
The modifier strictfp
-
-
Method Detail
-
values
public static ModifierKind[] 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 (ModifierKind c : ModifierKind.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ModifierKind 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
-
toString
public String toString()
Returns this modifier's name in lowercase.- Overrides:
toString
in classEnum<ModifierKind>
-
-