public enum ASTAccessVisibility extends Enum<ASTAccessVisibility>
Modifier and Type | Method and Description |
---|---|
static ASTAccessVisibility |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ASTAccessVisibility[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ASTAccessVisibility PUBLIC
public static final ASTAccessVisibility PROTECTED
public static final ASTAccessVisibility PRIVATE
public static ASTAccessVisibility[] values()
for (ASTAccessVisibility c : ASTAccessVisibility.values()) System.out.println(c);
public static ASTAccessVisibility 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 (c) IBM Corp. and others 2004, 2020. All Rights Reserved.