public enum AzureVisibility extends Enum<AzureVisibility>
| Enum Constant and Description |
|---|
HiddenMembership |
Private |
Public |
| Modifier and Type | Method and Description |
|---|---|
static AzureVisibility |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AzureVisibility |
valueOfIgnoreCase(String string,
boolean exceptionOnNull)
do a case-insensitive matching
|
static AzureVisibility[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AzureVisibility Public
public static final AzureVisibility Private
public static final AzureVisibility HiddenMembership
public static AzureVisibility[] values()
for (AzureVisibility c : AzureVisibility.values()) System.out.println(c);
public static AzureVisibility 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 static AzureVisibility valueOfIgnoreCase(String string, boolean exceptionOnNull)
string - exceptionOnNull - will not allow null or blank entriesCopyright © 2016 Internet2. All rights reserved.