public static enum LLJava.Modifier extends Enum<LLJava.Modifier>
Enum Constant and Description |
---|
Abstract
Declared abstract; class must not be instantiated; no
method implementation is provided.
|
Annotation
Declared as an annotation type.
|
Bridge
A bridge method, generated by the compiler.
|
Enum
Declared as an enum type or as an element of an enum.
|
Final
Declared final; no subclasses allowed; method must not be
overridden; field is never directly assigned to after object
construction.
|
Interface
Is an interface, not a class.
|
Mandated
Formal parameter implicitly declared in source code, according
to the specification of the language in which the source code
was written.
|
Native
Method declared native; implemented in a language other than Java.
|
Private
Declared private; usable only within the defining class.
|
Protected
Declared protected; may be accessed within subclasses.
|
Public
Declared public; may be accessed from outside its package.
|
Static
Declared static.
|
Strictfp
Method declared strictfp; floating-point mode is FP-strict.
|
Super
Treat superclass methods specially when invoked by the
invokespecial instruction.
|
Synchronized
Method declared synchronized; invocation is wrapped by a
monitor use.
|
Synthetic
Declared synthetic; not present in the source code.
|
Transient
Field declared transient; not written or read by a persistent
object manager.
|
Varargs
Method declared with variable number of arguments.
|
Volatile
Field declared volatile; cannot be cached.
|
Modifier and Type | Method and Description |
---|---|
static LLJava.Modifier |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LLJava.Modifier[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LLJava.Modifier Public
public static final LLJava.Modifier Protected
public static final LLJava.Modifier Private
public static final LLJava.Modifier Abstract
public static final LLJava.Modifier Static
public static final LLJava.Modifier Interface
public static final LLJava.Modifier Enum
public static final LLJava.Modifier Annotation
public static final LLJava.Modifier Final
public static final LLJava.Modifier Synthetic
public static final LLJava.Modifier Super
public static final LLJava.Modifier Bridge
public static final LLJava.Modifier Strictfp
public static final LLJava.Modifier Volatile
public static final LLJava.Modifier Transient
public static final LLJava.Modifier Synchronized
public static final LLJava.Modifier Native
public static final LLJava.Modifier Varargs
public static final LLJava.Modifier Mandated
public static LLJava.Modifier[] values()
for (LLJava.Modifier c : LLJava.Modifier.values()) System.out.println(c);
public static LLJava.Modifier valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullsee also the complete user documentation .