public enum PeopleCollection extends Enum<PeopleCollection>
| Enum Constant and Description |
|---|
VISIBLE |
| Modifier and Type | Method and Description |
|---|---|
String |
getCollectionName() |
static PeopleCollection |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PeopleCollection[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PeopleCollection VISIBLE
public static PeopleCollection[] values()
for (PeopleCollection c : PeopleCollection.values()) System.out.println(c);
public static PeopleCollection 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 getCollectionName()
Copyright © 2014. All Rights Reserved.