public static enum CacheScope.Level extends Enum<CacheScope.Level>
Modifier and Type | Method and Description |
---|---|
boolean |
matches(String input) |
CacheScope.Level |
parent() |
static CacheScope.Level |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CacheScope.Level[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CacheScope.Level GLOBAL
public static final CacheScope.Level SCHEMA
public static final CacheScope.Level TABLE
public static final CacheScope.Level PARTITION
public static CacheScope.Level[] values()
for (CacheScope.Level c : CacheScope.Level.values()) System.out.println(c);
public static CacheScope.Level 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 null@Nullable public CacheScope.Level parent()
public boolean matches(String input)
input
- the input property key stringCopyright © 2023. All Rights Reserved.