public static enum ClassModel.Scope extends Enum<ClassModel.Scope>
Modifier and Type | Method and Description |
---|---|
static ClassModel.Scope |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ClassModel.Scope[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ClassModel.Scope PUBLIC
public static final ClassModel.Scope PROTECTED
public static final ClassModel.Scope PACKAGE
public static final ClassModel.Scope PRIVATE
public static ClassModel.Scope[] values()
for (ClassModel.Scope c : ClassModel.Scope.values()) System.out.println(c);
public static ClassModel.Scope 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–2015 Carrot Search s.c.. All rights reserved.