public enum ParsedCacheMode extends Enum<ParsedCacheMode>
| Enum Constant and Description |
|---|
DIST |
INVALIDATION |
LOCAL |
REPL |
| Modifier and Type | Method and Description |
|---|---|
boolean |
matches(String candidate) |
static ParsedCacheMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ParsedCacheMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ParsedCacheMode LOCAL
public static final ParsedCacheMode REPL
public static final ParsedCacheMode DIST
public static final ParsedCacheMode INVALIDATION
public static ParsedCacheMode[] values()
for (ParsedCacheMode c : ParsedCacheMode.values()) System.out.println(c);
public static ParsedCacheMode 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 boolean matches(String candidate)
Copyright © 2024 JBoss, a division of Red Hat. All rights reserved.