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