public enum ModifierEnum extends Enum<ModifierEnum>
| Enum Constant and Description |
|---|
ABSTRACT
ABSTRACT to class and method
|
ANNOTATION
ANNOTATION to class
|
BRIDGE
BRIDGE to method
|
ENUM
ENUM to class(?)
|
FINAL
FINAL to class, field, method andparameter
|
INTERFACE
INTERFACE to class
|
MANDATED
MANDATED to parameter
|
NATIVE
NATIVE to method
|
STATIC
STATIC to field and method
|
STRICT
STRICT to method
|
SUPER
SUPER to class
|
SYNCHRONIZED
SYNCHRONIZED to method
|
SYNTHETIC
SYNTHETIC to class, field, method and parameter
|
TRANSIENT
TRANSIENT to field
|
VARARGS
VARARGS to method
|
VOLATILE
VOLATILE to field
|
| Modifier and Type | Method and Description |
|---|---|
int |
getOpCodes() |
static ModifierEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ModifierEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ModifierEnum ANNOTATION
public static final ModifierEnum ENUM
public static final ModifierEnum SUPER
public static final ModifierEnum INTERFACE
public static final ModifierEnum ABSTRACT
public static final ModifierEnum STATIC
public static final ModifierEnum FINAL
public static final ModifierEnum SYNCHRONIZED
public static final ModifierEnum VOLATILE
public static final ModifierEnum BRIDGE
public static final ModifierEnum VARARGS
public static final ModifierEnum TRANSIENT
public static final ModifierEnum NATIVE
public static final ModifierEnum STRICT
public static final ModifierEnum SYNTHETIC
public static final ModifierEnum MANDATED
public static ModifierEnum[] values()
for (ModifierEnum c : ModifierEnum.values()) System.out.println(c);
public static ModifierEnum 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 nullpublic int getOpCodes()
Copyright © 2018 Esfinge Framework. All rights reserved.