public enum ActiveCollectionVisibility extends Enum<ActiveCollectionVisibility>
Enum Constant and Description |
---|
Private
The active collection is private.
|
Public
The active collection is public.
|
Modifier and Type | Method and Description |
---|---|
static ActiveCollectionVisibility |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ActiveCollectionVisibility[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ActiveCollectionVisibility Public
public static final ActiveCollectionVisibility Private
public static ActiveCollectionVisibility[] values()
for (ActiveCollectionVisibility c : ActiveCollectionVisibility.values()) System.out.println(c);
public static ActiveCollectionVisibility 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 © 2013-2015 JBoss by Red Hat. All Rights Reserved.