public static enum InfinispanUtil.Location extends Enum<InfinispanUtil.Location>
Enum Constant and Description |
---|
EVERYWHERE
In all processes
|
LOCALLY
In the local process only, even if the cache is distributed
|
Modifier and Type | Method and Description |
---|---|
static InfinispanUtil.Location |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static InfinispanUtil.Location[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final InfinispanUtil.Location EVERYWHERE
public static final InfinispanUtil.Location LOCALLY
public static InfinispanUtil.Location[] values()
for (InfinispanUtil.Location c : InfinispanUtil.Location.values()) System.out.println(c);
public static InfinispanUtil.Location 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 © 2008-2014 JBoss, a division of Red Hat. All Rights Reserved.