public enum Modifier extends Enum<Modifier> implements Comparable<Modifier>
Enum Constant and Description |
---|
Abstract |
Final |
JSNI |
Native |
Static |
Synchronized |
Transient |
Volatile |
Modifier and Type | Method and Description |
---|---|
String |
getCanonicalString() |
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.
|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
compareTo
public static final Modifier Synchronized
public static final Modifier Native
public static final Modifier JSNI
public static final Modifier Static
public static final Modifier Final
public static final Modifier Abstract
public static final Modifier Transient
public static final Modifier Volatile
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 nullpublic String getCanonicalString()
Copyright © 2013-2015 JBoss, a division of Red Hat. All Rights Reserved.