public enum IoFilterType extends Enum<IoFilterType>
Java class for IoFilterType.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="IoFilterType">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="cache"/>
<enumeration value="replication"/>
<enumeration value="encryption"/>
<enumeration value="compression"/>
<enumeration value="inspection"/>
<enumeration value="datastoreIoControl"/>
<enumeration value="dataProvider"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
CACHE |
COMPRESSION |
DATA_PROVIDER |
DATASTORE_IO_CONTROL |
ENCRYPTION |
INSPECTION |
REPLICATION |
| Modifier and Type | Method and Description |
|---|---|
static IoFilterType |
fromValue(String v) |
String |
value() |
static IoFilterType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static IoFilterType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IoFilterType CACHE
public static final IoFilterType REPLICATION
public static final IoFilterType ENCRYPTION
public static final IoFilterType COMPRESSION
public static final IoFilterType INSPECTION
public static final IoFilterType DATASTORE_IO_CONTROL
public static final IoFilterType DATA_PROVIDER
public static IoFilterType[] values()
for (IoFilterType c : IoFilterType.values()) System.out.println(c);
public static IoFilterType 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 String value()
public static IoFilterType fromValue(String v)
Copyright © 2018. All rights reserved.