public enum KeyType extends Enum<KeyType> implements Serializable
Java class for keyType.
The following schema fragment specifies the expected content contained within this class.
 <simpleType name="keyType">
   <restriction base="{http://www.w3.org/2001/XMLSchema}NMTOKEN">
     <enumeration value="businessKey"/>
     <enumeration value="tModelKey"/>
     <enumeration value="serviceKey"/>
     <enumeration value="bindingKey"/>
     <enumeration value="subscriptionKey"/>
   </restriction>
 </simpleType>
 | Enum Constant and Description | 
|---|
| BINDING_KEY | 
| BUSINESS_KEY | 
| SERVICE_KEY | 
| SUBSCRIPTION_KEY | 
| T_MODEL_KEY | 
| Modifier and Type | Method and Description | 
|---|---|
| static KeyType | fromValue(String v) | 
| String | value() | 
| static KeyType | valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static KeyType[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final KeyType BUSINESS_KEY
public static final KeyType T_MODEL_KEY
public static final KeyType SERVICE_KEY
public static final KeyType BINDING_KEY
public static final KeyType SUBSCRIPTION_KEY
public static KeyType[] values()
for (KeyType c : KeyType.values()) System.out.println(c);
public static KeyType 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()
Copyright © 2004–2021 The Apache Software Foundation. All rights reserved.