![JAR search and dependency download from the Maven repository](/logo.png)
com.vmware.pbm.PbmLineOfServiceInfoLineOfServiceEnum Maven / Gradle / Ivy
package com.vmware.pbm;
import javax.xml.bind.annotation.XmlEnum;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for PbmLineOfServiceInfoLineOfServiceEnum.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <simpleType name="PbmLineOfServiceInfoLineOfServiceEnum">
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
* <enumeration value="INSPECTION"/>
* <enumeration value="COMPRESSION"/>
* <enumeration value="ENCRYPTION"/>
* <enumeration value="REPLICATION"/>
* <enumeration value="CACHING"/>
* <enumeration value="PERSISTENCE"/>
* <enumeration value="DATA_PROVIDER"/>
* <enumeration value="DATASTORE_IO_CONTROL"/>
* </restriction>
* </simpleType>
*
*
*/
@XmlType(name = "PbmLineOfServiceInfoLineOfServiceEnum")
@XmlEnum
public enum PbmLineOfServiceInfoLineOfServiceEnum {
INSPECTION,
COMPRESSION,
ENCRYPTION,
REPLICATION,
CACHING,
PERSISTENCE,
DATA_PROVIDER,
DATASTORE_IO_CONTROL;
public String value() {
return name();
}
public static PbmLineOfServiceInfoLineOfServiceEnum fromValue(String v) {
return valueOf(v);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy