/** * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. * * Copyright 2012-2016 the original author or authors. */ package org.assertj.db.type; /** * Enumeration of the different type of value that are in the database. * * @author RĂ©gis Pouiller * @author Otoniel Isidoro * */ public enum ValueType { /** * Bytes type. */ BYTES, /** * Boolean type. */ BOOLEAN, /** * Text type (CHAR or VARCHAR column). */ TEXT, /** * Date type. */ DATE, /** * Time type. */ TIME, /** * Date/time type (TIMESTAMP column). */ DATE_TIME, /** * Number type (INT, SMALLINT, TINYINT, BIGINT, REAL or DECIMAL column). */ NUMBER, /** * UUID type. */ UUID, /** * Not identified type : null value for example. */ NOT_IDENTIFIED; /** * Returns the types which are possible for the actual value (data) for the comparison with an expected value. * * @param expected The expected value * @return The possible types of the actual value */ public static ValueType[] getPossibleTypesForComparison(Object expected) { if (expected instanceof byte[]) { return new ValueType[] { BYTES }; } if (expected instanceof Boolean) { return new ValueType[] { BOOLEAN }; } if (expected instanceof String) { return new ValueType[] { ValueType.TEXT, ValueType.NUMBER, ValueType.DATE, ValueType.TIME, ValueType.DATE_TIME, ValueType.UUID }; } if (expected instanceof DateValue) { return new ValueType[] { ValueType.DATE, ValueType.DATE_TIME }; } if (expected instanceof TimeValue) { return new ValueType[] { ValueType.TIME }; } if (expected instanceof DateTimeValue) { return new ValueType[] { DATE_TIME }; } if (expected instanceof Number) { return new ValueType[] { NUMBER }; } if (expected instanceof java.util.UUID) { return new ValueType[] { UUID }; } return new ValueType[] { NOT_IDENTIFIED }; } }