blob: 14f6f8bae2ea84833c074b093739be98598bc0bf [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.catalog.descriptors;
import java.util.List;
import java.util.Objects;
import org.apache.ignite.internal.tostring.S;
/**
* Hash index descriptor.
*/
public class HashIndexDescriptor extends IndexDescriptor {
private static final long serialVersionUID = -6784028115063219759L;
private final List<String> columns;
/**
* Constructs a hash index descriptor.
*
* @param id Id of the index.
* @param name Name of the index.
* @param tableId Id of the table index belongs to.
* @param unique Unique flag.
* @param columns A list of indexed columns. Must not contains duplicates.
* @throws IllegalArgumentException If columns list contains duplicates.
*/
public HashIndexDescriptor(int id, String name, int tableId, boolean unique, List<String> columns) {
super(id, name, tableId, unique);
this.columns = List.copyOf(Objects.requireNonNull(columns, "columns"));
}
/** Returns indexed columns. */
public List<String> columns() {
return columns;
}
/** {@inheritDoc} */
@Override
public boolean hasColumn(String columnName) {
return columns.contains(columnName);
}
/** {@inheritDoc} */
@Override
public String toString() {
return S.toString(this);
}
}