net.vvakame.blaz
Enum Filter.FilterOption

java.lang.Object
  extended by java.lang.Enum<Filter.FilterOption>
      extended by net.vvakame.blaz.Filter.FilterOption
All Implemented Interfaces:
Serializable, Comparable<Filter.FilterOption>
Enclosing interface:
Filter

public static enum Filter.FilterOption
extends Enum<Filter.FilterOption>

検索オプション.

Author:
vvakame

Enum Constant Summary
EQ
          等しい
GT
          より大きい
GT_EQ
          より大きいか、等しい
IN
          指定された何かに当てはまる
LT
          より小さい
LT_EQ
          より小さいか、等しい
 
Method Summary
static Filter.FilterOption valueOf(String name)
          Returns the enum constant of this type with the specified name.
static Filter.FilterOption[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

EQ

public static final Filter.FilterOption EQ
等しい


GT

public static final Filter.FilterOption GT
より大きい


LT

public static final Filter.FilterOption LT
より小さい


GT_EQ

public static final Filter.FilterOption GT_EQ
より大きいか、等しい


LT_EQ

public static final Filter.FilterOption LT_EQ
より小さいか、等しい


IN

public static final Filter.FilterOption IN
指定された何かに当てはまる

Method Detail

values

public static Filter.FilterOption[] 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 (Filter.FilterOption c : Filter.FilterOption.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static Filter.FilterOption 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 name
NullPointerException - if the argument is null


Copyright © 2012. All Rights Reserved.