public static enum Java.Visibility extends Enum<Java.Visibility>
Enum Constant and Description |
---|
default_
The default_.
|
private_
The private_.
|
protected_
The protected_.
|
public_
The public_.
|
Modifier and Type | Method and Description |
---|---|
String |
toString() |
static Java.Visibility |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Java.Visibility[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Java.Visibility public_
public static final Java.Visibility protected_
public static final Java.Visibility private_
public static final Java.Visibility default_
public static Java.Visibility[] values()
for (Java.Visibility c : Java.Visibility.values()) System.out.println(c);
public static Java.Visibility 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<Java.Visibility>
Enum.toString()
Copyright © 2003–2021 XDEV Software. All rights reserved.