public static enum JField.Disposition extends Enum<JField.Disposition>
Enum Constant and Description |
---|
COMPILE_TIME_CONSTANT |
FINAL |
NONE |
THIS_REF |
VOLATILE |
Modifier and Type | Method and Description |
---|---|
boolean |
isFinal() |
boolean |
isThisRef() |
static JField.Disposition |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static JField.Disposition[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JField.Disposition COMPILE_TIME_CONSTANT
public static final JField.Disposition FINAL
public static final JField.Disposition NONE
public static final JField.Disposition THIS_REF
public static final JField.Disposition VOLATILE
public static JField.Disposition[] values()
for (JField.Disposition c : JField.Disposition.values()) System.out.println(c);
public static JField.Disposition 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 boolean isFinal()
public boolean isThisRef()
Copyright © 2018. All rights reserved.