@Portable public enum VisibilityTO extends Enum<VisibilityTO>
| Enum Constant and Description |
|---|
PACKAGE_PRIVATE |
PRIVATE |
PROTECTED |
PUBLIC |
| Modifier and Type | Method and Description |
|---|---|
static VisibilityTO |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static VisibilityTO[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final VisibilityTO PUBLIC
public static final VisibilityTO PROTECTED
public static final VisibilityTO PRIVATE
public static final VisibilityTO PACKAGE_PRIVATE
public static VisibilityTO[] values()
for (VisibilityTO c : VisibilityTO.values()) System.out.println(c);
public static VisibilityTO 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 © 2001–2015 JBoss by Red Hat. All rights reserved.