public enum Modifier extends Enum<Modifier>
Modifier
but in our own package to avoid having a dependency.Enum Constant and Description |
---|
ABSTRACT |
DEFAULT |
FINAL |
NATIVE |
PRIVATE |
PROTECTED |
PUBLIC |
STATIC |
STRICTFP |
SYNCHRONIZED |
TRANSIENT |
VOLATILE |
Modifier and Type | Method and Description |
---|---|
String |
toString()
Returns this modifier's name in lowercase suitable for code generation.
|
static Modifier |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Modifier[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Modifier PUBLIC
public static final Modifier PROTECTED
public static final Modifier PRIVATE
public static final Modifier ABSTRACT
public static final Modifier DEFAULT
public static final Modifier STATIC
public static final Modifier FINAL
public static final Modifier TRANSIENT
public static final Modifier VOLATILE
public static final Modifier SYNCHRONIZED
public static final Modifier NATIVE
public static final Modifier STRICTFP
public static Modifier[] values()
for (Modifier c : Modifier.values()) System.out.println(c);
public static 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 null
Version 2.0.0 generated on 2014-11-22 at 09:45 - (C) 41concepts Aps. Refer to project homepage valjogen.41concepts.com for more information.