blob: 59e3938d45db81b11ccc5c298132d9a50443feea [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.directory.server.xdbm.impl.avl;
import org.apache.directory.server.xdbm.Table;
/**
* Some data for a table.
*
* @author <a href="mailto:dev@directory.apache.org">Apache Directory Project</a>
*/
public class TableData
{
/**
* Used to inject data into a Table not supporting duplicates.
*
* @return
*/
public static void injectNoDupsData( Table<Integer, Integer> table ) throws Exception
{
if ( table.isDupsEnabled() )
{
throw new IllegalArgumentException( "table must NOT support duplicates" );
}
table.put( 0, 3 );
table.put( 1, 2 );
table.put( 2, 0 ); // overwritten
table.put( 2, 1 );
table.put( 2, 1 ); // has no effect
table.put( 3, 0 );
table.put( 23, 8934 );
}
public static void injectDupsData( Table<Integer, Integer> table ) throws Exception
{
if ( !table.isDupsEnabled() )
{
throw new IllegalArgumentException( "table MUST support duplicates" );
}
table.put( 0, 3 ); // 1
table.put( 1, 2 ); // 2 - 3 duplicates
table.put( 1, 4 ); // 3
table.put( 1, 6 ); // 4
table.put( 2, 1 ); // 5
table.put( 3, 0 ); // 6
table.put( 3, 0 ); // has no effect
table.put( 3, 8 ); // 7
table.put( 3, 9 ); // 8
table.put( 3, 10 ); // 9
table.put( 23, 8934 ); // 10
}
}