Package com.sun.mirror.declaration
Enum Class Modifier
- All Implemented Interfaces:
Serializable
,Comparable<Modifier>
,Constable
Represents a modifier on the declaration of a program element such
as a class, method, or field.
Not all modifiers are applicable to all kinds of declarations. When two or more modifiers appear in the source code of a declaration, then it is customary, though not required, that they appear in the same order as the constants listed in the detail section below.
- Since:
- 1.5
- Version:
- 1.1 04/01/25
- Author:
- Joseph D. Darcy, Scott Seligman
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionThe modifierabstract
The modifierfinal
The modifiernative
The modifierprivate
The modifierprotected
The modifierpublic
The modifierstatic
The modifierstrictfp
The modifiersynchronized
The modifiertransient
The modifiervolatile
-
Method Summary
-
Enum Constant Details
-
PUBLIC
The modifierpublic
-
PROTECTED
The modifierprotected
-
PRIVATE
The modifierprivate
-
ABSTRACT
The modifierabstract
-
STATIC
The modifierstatic
-
FINAL
The modifierfinal
-
TRANSIENT
The modifiertransient
-
VOLATILE
The modifiervolatile
-
SYNCHRONIZED
The modifiersynchronized
-
NATIVE
The modifiernative
-
STRICTFP
The modifierstrictfp
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException
- if the argument is null
-
toString
Returns this modifier's name in lowercase.
-