Package eu.bandm.tools.lljava.absy
Enum Class LLJava.Modifier
- All Implemented Interfaces:
Serializable
,Comparable<LLJava.Modifier>
,java.lang.constant.Constable
- Enclosing class:
- LLJava
Symbolic constants for all bit flags used to denote
access permissions
to and properties of classes, fields and methods.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionDeclared abstract; class must not be instantiated; no method implementation is provided.Declared as an annotation type.A bridge method, generated by the compiler.Declared as an enum type or as an element of an enum.Declared final; no subclasses allowed; method must not be overridden; field is never directly assigned to after object construction.Is an interface, not a class.Formal parameter implicitly declared in source code, according to the specification of the language in which the source code was written.Method declared native; implemented in a language other than Java.Declared private; usable only within the defining class.Declared protected; may be accessed within subclasses.Declared public; may be accessed from outside its package.Declared static.Method declared strictfp; floating-point mode is FP-strict.Treat superclass methods specially when invoked by the invokespecial instruction.Method declared synchronized; invocation is wrapped by a monitor use.Declared synthetic; not present in the source code.Field declared transient; not written or read by a persistent object manager.Method declared with variable number of arguments.Field declared volatile; cannot be cached. -
Method Summary
Modifier and TypeMethodDescriptionstatic LLJava.Modifier
Returns the enum constant of this class with the specified name.static LLJava.Modifier[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
Public
Declared public; may be accessed from outside its package. -
Protected
Declared protected; may be accessed within subclasses. -
Private
Declared private; usable only within the defining class. -
Abstract
Declared abstract; class must not be instantiated; no method implementation is provided. -
Static
Declared static. -
Interface
Is an interface, not a class. -
Enum
Declared as an enum type or as an element of an enum. -
Annotation
Declared as an annotation type. -
Final
Declared final; no subclasses allowed; method must not be overridden; field is never directly assigned to after object construction. -
Synthetic
Declared synthetic; not present in the source code. -
Super
Treat superclass methods specially when invoked by the invokespecial instruction. -
Bridge
A bridge method, generated by the compiler. -
Strictfp
Method declared strictfp; floating-point mode is FP-strict. -
Volatile
Field declared volatile; cannot be cached. -
Transient
Field declared transient; not written or read by a persistent object manager. -
Synchronized
Method declared synchronized; invocation is wrapped by a monitor use. -
Native
Method declared native; implemented in a language other than Java. -
Varargs
Method declared with variable number of arguments. -
Mandated
Formal parameter implicitly declared in source code, according to the specification of the language in which the source code was written.
-
-
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
-