public static enum AbstractCompiler.PropertyAccessKind extends java.lang.Enum<AbstractCompiler.PropertyAccessKind>
Enum Constant and Description |
---|
GETTER_AND_SETTER |
GETTER_ONLY |
NORMAL |
SETTER_ONLY |
Modifier and Type | Method and Description |
---|---|
static AbstractCompiler.PropertyAccessKind |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AbstractCompiler.PropertyAccessKind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AbstractCompiler.PropertyAccessKind NORMAL
public static final AbstractCompiler.PropertyAccessKind GETTER_ONLY
public static final AbstractCompiler.PropertyAccessKind SETTER_ONLY
public static final AbstractCompiler.PropertyAccessKind GETTER_AND_SETTER
public static AbstractCompiler.PropertyAccessKind[] values()
for (AbstractCompiler.PropertyAccessKind c : AbstractCompiler.PropertyAccessKind.values()) System.out.println(c);
public static AbstractCompiler.PropertyAccessKind valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullCopyright © 2009-2018 Google. All Rights Reserved.