blob: 7ad73a67cf292a44ffe7cd85bda67dbe2dd3104f [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.drill.exec.vector.accessor;
/**
* Represents a scalar value: a required column, a nullable column,
* or one element within an array of scalars.
* <p>
* Vector values are mapped to
* their "natural" representations: the representation closest
* to the actual vector value. For date and time values, this
* generally means a numeric value. Applications can then map
* this value to Java objects as desired. Decimal types all
* map to BigDecimal as that is the only way in Java to
* represent large decimal values.
* <p>
* In general, a column maps to just one value. However, derived
* classes may choose to provide type conversions if convenient.
* An exception is thrown if a call is made to a method that
* is not supported by the column type.
* <p>
* {@see ScalarReader}
* {@see ScalarElementReader}
*/
public interface ScalarWriter extends ColumnWriter, ValueWriter {
/**
* Describe the type of the value. This is a compression of the
* value vector type: it describes which method will return the
* vector value.
* @return the value type which indicates which get method
* is valid for the column
*/
ValueType valueType();
/**
* The extended type of the value, describes the secondary type
* for DATE, TIME and TIMESTAMP for which the value type is
* int or long.
*/
ValueType extendedType();
/**
* Set the default value to be used to fill empties for this writer.
* Only valid for required writers: null writers set this is-set bit
* to 0 and set the data value to 0.
*
* @param value the value to set. Cannot be null. The type of the value
* must match that legal for {@link #setValue(Object)}
*/
void setDefaultValue(Object value);
}