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