public enum OwComparisonOperator extends Enum<OwComparisonOperator>
The SQL comparison operator enumeration.
Alfresco Workdesk
Copyright (c) Alfresco Software, Inc.
All rights reserved.
For licensing information read the license.txt file or
go to: http://wiki.alfresco.com
Enum Constant and Description |
---|
EQ
The = operator
|
GEQ
The >= operator
|
GT
The > operator
|
LEQ
The <= operator
|
LT
The < operator
|
NEQ
The <> operator
|
Modifier and Type | Method and Description |
---|---|
String |
getSQLString() |
static OwComparisonOperator |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static OwComparisonOperator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OwComparisonOperator EQ
public static final OwComparisonOperator NEQ
public static final OwComparisonOperator LT
public static final OwComparisonOperator GT
public static final OwComparisonOperator LEQ
public static final OwComparisonOperator GEQ
public static OwComparisonOperator[] values()
for (OwComparisonOperator c : OwComparisonOperator.values()) System.out.println(c);
public static OwComparisonOperator valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant
with the specified nameNullPointerException
- if the argument is nullpublic String getSQLString()
Copyright © 2014 Alfresco Business Solutions. All Rights Reserved.