public enum AccessScope extends Enum<AccessScope>
| Enum Constant and Description |
|---|
PACKAGE
package scope.
|
PRIVATE
private scope.
|
PROTECTED
protected scope.
|
PUBLIC
public scope.
|
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
static AccessScope |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AccessScope[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AccessScope PRIVATE
public static final AccessScope PACKAGE
public static final AccessScope PROTECTED
public static final AccessScope PUBLIC
public static AccessScope[] values()
for (AccessScope c : AccessScope.values()) System.out.println(c);
public static AccessScope 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 String toString()
toString in class Enum<AccessScope>Copyright © 2016 Krake Softwaretechnik. All rights reserved.