public enum VisibilityEnum extends Enum<VisibilityEnum>
| Enum Constant and Description |
|---|
PRIVATE
PRIVATE
|
PROTECTED
PROTECTED
|
PUBLIC
PUBLIC
|
| Modifier and Type | Method and Description |
|---|---|
int |
getOpCodes() |
static VisibilityEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static VisibilityEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final VisibilityEnum PUBLIC
public static final VisibilityEnum PRIVATE
public static final VisibilityEnum PROTECTED
public static VisibilityEnum[] values()
for (VisibilityEnum c : VisibilityEnum.values()) System.out.println(c);
public static VisibilityEnum 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 int getOpCodes()
Copyright © 2017 Esfinge Framework. All rights reserved.