public enum TempMode extends Enum<TempMode>
Enum Constant and Description |
---|
CACHED |
CACHING_PIPELINE_BREAKER |
NONE |
PIPELINE_BREAKER |
Modifier and Type | Method and Description |
---|---|
boolean |
breaksPipeline() |
boolean |
isCached() |
TempMode |
makeCached() |
TempMode |
makeNonCached() |
TempMode |
makePipelineBreaker() |
static TempMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TempMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TempMode NONE
public static final TempMode PIPELINE_BREAKER
public static final TempMode CACHED
public static final TempMode CACHING_PIPELINE_BREAKER
public static TempMode[] values()
for (TempMode c : TempMode.values()) System.out.println(c);
public static TempMode 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 isCached()
public boolean breaksPipeline()
public TempMode makePipelineBreaker()
public TempMode makeCached()
public TempMode makeNonCached()
Copyright © 2014–2024 The Apache Software Foundation. All rights reserved.