blob: cf0eade141ed50813a42398d721438235b09a646 [file] [log] [blame]
/*
Derby - Class org.apache.derby.iapi.sql.dictionary.ColumnDescriptorList
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.derby.iapi.sql.dictionary;
import org.apache.derby.catalog.UUID;
import java.util.ArrayList;
/**
* This represents a list of column descriptors.
*/
public class ColumnDescriptorList extends ArrayList<ColumnDescriptor>
{
/**
* Add the column. Currently, the table id is ignored.
*
* @param tableID the table id (ignored)
* @param column the column to add
*/
public void add(UUID tableID, ColumnDescriptor column)
{
/*
** RESOLVE: The interface includes tableID because presumably
** the primary key for the columns table will be tableID +
** columnID (or possibly tableID + column name - both column
** name and ID must be unique within a table). However, the
** ColumnDescriptor contains a reference to a tableID, so it
** seems like we don't need the parameter here. I am going
** to leave it here just in case we decide we need it later.
*/
add(column);
}
/**
* Get the column descriptor
*
* @param tableID the table id (ignored)
* @param columnName the column get
*
* @return the column descriptor if found
*/
public ColumnDescriptor getColumnDescriptor(UUID tableID,
String columnName)
{
ColumnDescriptor returnValue = null;
for (ColumnDescriptor columnDescriptor : this)
{
if ( columnName.equals( columnDescriptor.getColumnName() ) &&
tableID.equals( columnDescriptor.getReferencingUUID() ) )
{
returnValue = columnDescriptor;
break;
}
}
return returnValue;
}
/**
* Get the column descriptor
*
* @param tableID the table id (ignored)
* @param columnID the column id
*
* @return the column descriptor if found
*/
public ColumnDescriptor getColumnDescriptor(UUID tableID, int columnID)
{
ColumnDescriptor returnValue = null;
for (ColumnDescriptor columnDescriptor : this)
{
if ( ( columnID == columnDescriptor.getPosition() ) &&
tableID.equals( columnDescriptor.getReferencingUUID() ) )
{
returnValue = columnDescriptor;
break;
}
}
return returnValue;
}
/**
* Return the nth (0-based) element in the list.
*
* @param n Which element to return.
*
* @return The nth element in the list.
*/
public ColumnDescriptor elementAt(int n)
{
return get(n);
}
/**
* Get an array of strings for all the columns
* in this CDL.
*
* @return the array of strings
*/
public String[] getColumnNames()
{
String strings[] = new String[size()];
int size = size();
for (int index = 0; index < size; index++)
{
ColumnDescriptor columnDescriptor = elementAt(index);
strings[index] = columnDescriptor.getColumnName();
}
return strings;
}
}