package com.intuit.tank.vm.common; /* * #%L * Intuit Tank Api * %% * Copyright (C) 2011 - 2015 Intuit Inc. * %% * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * #L% */ public class ValidationTypeConstants { public static final String REPRESENTATION_EQUALS = "Equals"; public static final String REPRESENTATION_NOT_EQUALS = "Not Equals"; public final static String REPRESENTATION_EMPTY = "Empty"; public final static String REPRESENTATION_NOTEMPTY = "Not empty"; public final static String REPRESENTATION_CONTAINS = "Contains"; public final static String REPRESENTATION_DOESNOTCONTAIN = "Does not contain"; public final static String REPRESENTATION_LESS_THAN = "Less Than"; public final static String REPRESENTATION_GREATER_THAN = "Greater Than"; public final static String EQUALS = "=="; public final static String NOTEQUALS = "!="; public final static String EMPTY = "Empty"; public final static String NOTEMPTY = "Not empty"; public final static String CONTAINS = "Contains"; public final static String DOESNOTCONTAIN = "Does not contain"; public final static String LESS_THAN = "Less Than"; public final static String GREATER_THAN = "Greater Than"; }