|
IM-Workflow | |||||||||
前のクラス 次のクラス | フレームあり フレームなし | |||||||||
概要: 入れ子 | 列挙型定数 | フィールド | メソッド | 詳細: 列挙型定数 | フィールド | メソッド |
java.lang.Objectjava.lang.Enum<OperatorType>
jp.co.intra_mart.foundation.workflow.application.general.condition.OperatorType
public enum OperatorType
比較演算子列挙型
「ListSearchCondition」等条件を保存するクラスで、
キーとして指定するカラムと値がどの条件で比較されるかを指定する時に使用します。
ListSearchCondition
列挙型定数の概要 | |
---|---|
EQ
比較条件、等しい( = ) |
|
GE
比較条件、以上( >= ) |
|
GT
比較条件、より大きい( > ) |
|
LE
比較条件、以下( <= ) |
|
LIKE
比較条件、LIKE句( like ) |
|
LT
比較条件、未満( < ) |
メソッドの概要 | |
---|---|
String |
toString()
比較演算子の文字を取得します。 |
static OperatorType |
valueOf(String name)
指定した名前を持つこの型の列挙型定数を返します。 |
static OperatorType[] |
values()
この列挙型の定数を含む配列を宣言されている順序で返します。 |
クラス java.lang.Enum から継承されたメソッド |
---|
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, valueOf |
クラス java.lang.Object から継承されたメソッド |
---|
getClass, notify, notifyAll, wait, wait, wait |
列挙型定数の詳細 |
---|
public static final OperatorType EQ
public static final OperatorType LE
public static final OperatorType GE
public static final OperatorType GT
public static final OperatorType LT
public static final OperatorType LIKE
メソッドの詳細 |
---|
public static OperatorType[] values()
for (OperatorType c : OperatorType.values()) System.out.println(c);
public static OperatorType valueOf(String name)
name
- 返される列挙型定数の名前
IllegalArgumentException
- 指定された名前を持つ定数を
この列挙型が持っていない場合
NullPointerException
- 引数が null の場合public String toString()
Enum<OperatorType>
内の toString
|
IM-Workflow | |||||||||
前のクラス 次のクラス | フレームあり フレームなし | |||||||||
概要: 入れ子 | 列挙型定数 | フィールド | メソッド | 詳細: 列挙型定数 | フィールド | メソッド |