Package org.apache.camel.component.jt400
Enum Jt400Configuration.SearchType
- java.lang.Object
-
- java.lang.Enum<Jt400Configuration.SearchType>
-
- org.apache.camel.component.jt400.Jt400Configuration.SearchType
-
- All Implemented Interfaces:
Serializable,Comparable<Jt400Configuration.SearchType>
- Enclosing class:
- Jt400Configuration
public static enum Jt400Configuration.SearchType extends Enum<Jt400Configuration.SearchType>
SearchTypes for reading from Keyed Data Queues
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Jt400Configuration.SearchTypevalueOf(String name)Returns the enum constant of this type with the specified name.static Jt400Configuration.SearchType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
EQ
public static final Jt400Configuration.SearchType EQ
-
NE
public static final Jt400Configuration.SearchType NE
-
LT
public static final Jt400Configuration.SearchType LT
-
LE
public static final Jt400Configuration.SearchType LE
-
GT
public static final Jt400Configuration.SearchType GT
-
GE
public static final Jt400Configuration.SearchType GE
-
-
Method Detail
-
values
public static Jt400Configuration.SearchType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (Jt400Configuration.SearchType c : Jt400Configuration.SearchType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Jt400Configuration.SearchType valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
-