public enum FilterManager extends java.lang.Enum<FilterManager>
Modifier and Type | Method and Description |
---|---|
static void |
addFilter(Filter filter)
Adds a filter.
|
static FilterPipeline |
getPipeline(FilterPipelineMessage filterPipelineMessage)
Builds a new pipeline for decoding chunks from a
FilterPipelineMessage . |
static FilterManager |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static FilterManager[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static FilterManager[] values()
for (FilterManager c : FilterManager.values()) System.out.println(c);
public static FilterManager valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic static void addFilter(Filter filter)
Filter
.filter
- the filter class to addHdfFilterException
- if the filter is not validpublic static FilterPipeline getPipeline(FilterPipelineMessage filterPipelineMessage)
FilterPipelineMessage
.filterPipelineMessage
- message containing the datasets filter
specification.HdfFilterException
- if a required filter is not available