blob: e9b2b730f336bc27b34ed3fbed2746e3e56c61c6 [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.ignite.internal.schema.definition;
import org.apache.ignite.internal.tostring.S;
import org.apache.ignite.schema.definition.ColumnDefinition;
import org.apache.ignite.schema.definition.ColumnType;
import org.jetbrains.annotations.Nullable;
/**
* Table column.
*/
public class ColumnDefinitionImpl implements ColumnDefinition {
/** Column name. */
private final String name;
/** Column type. */
private final ColumnType type;
/** Nullable flag. */
private final boolean nullable;
/** Default value. */
private final Object defValExpr;
/**
* Constructor.
*
* @param name Column name.
* @param type Column type.
* @param nullable Nullability flag.
* @param defValExpr Default value.
*/
public ColumnDefinitionImpl(String name, ColumnType type, boolean nullable, @Nullable Object defValExpr) {
this.name = name;
this.type = type;
this.nullable = nullable;
this.defValExpr = defValExpr;
}
/** {@inheritDoc} */
@Override public String name() {
return name;
}
/** {@inheritDoc} */
@Override public ColumnType type() {
return type;
}
/** {@inheritDoc} */
@Override public boolean nullable() {
return nullable;
}
/** {@inheritDoc} */
@Override public Object defaultValue() {
return defValExpr;
}
/** {@inheritDoc} */
@Override public String toString() {
return S.toString(ColumnDefinitionImpl.class, this);
}
}