public static enum Configuration.AccessLevel extends Enum<Configuration.AccessLevel>
Enum Constant and Description |
---|
PACKAGE_PRIVATE
All public, protected and package private properties are accessible.
|
PRIVATE
All properties are accessible.
|
PROTECTED
All public and protected properties are accessible.
|
PUBLIC
Only public properties are accessible.
|
Modifier and Type | Method and Description |
---|---|
static Configuration.AccessLevel |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Configuration.AccessLevel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Configuration.AccessLevel PUBLIC
public static final Configuration.AccessLevel PROTECTED
public static final Configuration.AccessLevel PACKAGE_PRIVATE
public static final Configuration.AccessLevel PRIVATE
public static Configuration.AccessLevel[] values()
for (Configuration.AccessLevel c : Configuration.AccessLevel.values()) System.out.println(c);
public static Configuration.AccessLevel 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 © 2011–2024. All rights reserved.