org.nuiton.wikitty.search.operators
Enum SearchOperand

java.lang.Object
  extended by java.lang.Enum<SearchOperand>
      extended by org.nuiton.wikitty.search.operators.SearchOperand
All Implemented Interfaces:
Serializable, Comparable<SearchOperand>

Deprecated. ne semble pas utilise, interet ???

@Deprecated
public enum SearchOperand
extends Enum<SearchOperand>

Represents the possible operands for client search. The supported type of each AttributeSearchDto depends of its type.


Enum Constant Summary
BEGINS_WITH
          Deprecated.  
BETWEEN
          Deprecated.  
CONTAINS
          Deprecated.  
ENDS_WITH
          Deprecated.  
EQUALS
          Deprecated.  
GREATER
          Deprecated.  
GREATER_OR_EQUALS
          Deprecated.  
LESS
          Deprecated.  
LESS_OR_EQUALS
          Deprecated.  
NOT_CONTAINS
          Deprecated.  
NOT_EQUALS
          Deprecated.  
 
Method Summary
static SearchOperand valueOf(String name)
          Deprecated. Returns the enum constant of this type with the specified name.
static SearchOperand[] values()
          Deprecated. 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

EQUALS

public static final SearchOperand EQUALS
Deprecated. 

NOT_EQUALS

public static final SearchOperand NOT_EQUALS
Deprecated. 

LESS

public static final SearchOperand LESS
Deprecated. 

LESS_OR_EQUALS

public static final SearchOperand LESS_OR_EQUALS
Deprecated. 

GREATER

public static final SearchOperand GREATER
Deprecated. 

GREATER_OR_EQUALS

public static final SearchOperand GREATER_OR_EQUALS
Deprecated. 

BEGINS_WITH

public static final SearchOperand BEGINS_WITH
Deprecated. 

ENDS_WITH

public static final SearchOperand ENDS_WITH
Deprecated. 

CONTAINS

public static final SearchOperand CONTAINS
Deprecated. 

NOT_CONTAINS

public static final SearchOperand NOT_CONTAINS
Deprecated. 

BETWEEN

public static final SearchOperand BETWEEN
Deprecated. 
Method Detail

values

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

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

valueOf

public static SearchOperand valueOf(String name)
Deprecated. 
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 © 2009-2012 CodeLutin. All Rights Reserved.