public enum FieldManifestation extends Enum<FieldManifestation> implements ModifierContributor.ForField
ModifierContributor.ForField, ModifierContributor.ForMethod, ModifierContributor.ForType
Enum Constant and Description |
---|
FINAL
Modifier for a final field.
|
PLAIN
Modifier for a non-final, non-volatile field.
|
VOLATILE
Modifier for a volatile field.
|
EMPTY_MASK
Modifier and Type | Method and Description |
---|---|
int |
getMask()
Returns the mask of this modifier.
|
static FieldManifestation |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FieldManifestation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FieldManifestation PLAIN
public static final FieldManifestation FINAL
public static final FieldManifestation VOLATILE
public static FieldManifestation[] values()
for (FieldManifestation c : FieldManifestation.values()) System.out.println(c);
public static FieldManifestation 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 getMask()
ModifierContributor
getMask
in interface ModifierContributor
Copyright © 2014. All rights reserved.