blob: f0aed334dcb907db94b6d1c6ec0c31f2daaf2dc5 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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.
*/
package org.apache.flink.table.types.logical;
import org.apache.flink.annotation.PublicEvolving;
import java.util.Collections;
import java.util.List;
import java.util.Set;
/**
* Logical type of a 1-byte signed integer with values from -128 to 127.
*
* <p>The serialized string representation is {@code TINYINT}.
*/
@PublicEvolving
public final class TinyIntType extends LogicalType {
private static final long serialVersionUID = 1L;
public static final int PRECISION = 3;
private static final String FORMAT = "TINYINT";
private static final Set<String> NULL_OUTPUT_CONVERSION = conversionSet(Byte.class.getName());
private static final Set<String> NOT_NULL_INPUT_OUTPUT_CONVERSION =
conversionSet(Byte.class.getName(), byte.class.getName());
private static final Class<?> DEFAULT_CONVERSION = Byte.class;
public TinyIntType(boolean isNullable) {
super(isNullable, LogicalTypeRoot.TINYINT);
}
public TinyIntType() {
this(true);
}
@Override
public LogicalType copy(boolean isNullable) {
return new TinyIntType(isNullable);
}
@Override
public String asSerializableString() {
return withNullability(FORMAT);
}
@Override
public boolean supportsInputConversion(Class<?> clazz) {
return NOT_NULL_INPUT_OUTPUT_CONVERSION.contains(clazz.getName());
}
@Override
public boolean supportsOutputConversion(Class<?> clazz) {
if (isNullable()) {
return NULL_OUTPUT_CONVERSION.contains(clazz.getName());
}
return NOT_NULL_INPUT_OUTPUT_CONVERSION.contains(clazz.getName());
}
@Override
public Class<?> getDefaultConversion() {
return DEFAULT_CONVERSION;
}
@Override
public List<LogicalType> getChildren() {
return Collections.emptyList();
}
@Override
public <R> R accept(LogicalTypeVisitor<R> visitor) {
return visitor.visit(this);
}
}