com.evolveum.midpoint.repo.api.query
Enum SimpleFilterType

java.lang.Object
  extended by java.lang.Enum<SimpleFilterType>
      extended by com.evolveum.midpoint.repo.api.query.SimpleFilterType
All Implemented Interfaces:
Serializable, Comparable<SimpleFilterType>

public enum SimpleFilterType
extends Enum<SimpleFilterType>

Author:
lazyman

Enum Constant Summary
EQ
           
GT
           
GTEQ
           
LIKE
           
LT
           
LTEQ
           
NEQ
           
NOT_NULL
           
NULL
           
 
Method Summary
 String getElementName()
           
static SimpleFilterType valueOf(String name)
          Returns the enum constant of this type with the specified name.
static SimpleFilterType[] 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 SimpleFilterType EQ

GT

public static final SimpleFilterType GT

LT

public static final SimpleFilterType LT

GTEQ

public static final SimpleFilterType GTEQ

LTEQ

public static final SimpleFilterType LTEQ

NEQ

public static final SimpleFilterType NEQ

NULL

public static final SimpleFilterType NULL

NOT_NULL

public static final SimpleFilterType NOT_NULL

LIKE

public static final SimpleFilterType LIKE
Method Detail

values

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

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

valueOf

public static SimpleFilterType 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

getElementName

public String getElementName()


Copyright © 2013 evolveum. All Rights Reserved.