public static enum ProxyGenerator.AccessibilityType extends Enum<ProxyGenerator.AccessibilityType>
| Enum Constant and Description |
|---|
PACKAGE
Generate public, protected and package-private fields and methods.
|
PRIVATE
Generate public, protected, package-private and private fields and methods.
|
PROTECTED
Generate public and protected fields and methods.
|
PUBLIC
Generate public fields and methods.
|
| Modifier and Type | Method and Description |
|---|---|
static ProxyGenerator.AccessibilityType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ProxyGenerator.AccessibilityType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ProxyGenerator.AccessibilityType PUBLIC
public static final ProxyGenerator.AccessibilityType PROTECTED
public static final ProxyGenerator.AccessibilityType PACKAGE
public static final ProxyGenerator.AccessibilityType PRIVATE
public static ProxyGenerator.AccessibilityType[] values()
for (ProxyGenerator.AccessibilityType c : ProxyGenerator.AccessibilityType.values()) System.out.println(c);
public static ProxyGenerator.AccessibilityType 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 nullCopyright © 2012. All Rights Reserved.