/* *************************************************************************************** * Copyright (C) 2006 EsperTech, Inc. All rights reserved. * * http://www.espertech.com/esper * * http://www.espertech.com * * ---------------------------------------------------------------------------------- * * The software in this package is published under the terms of the GPL license * * a copy of which has been included with this distribution in the license.txt file. * *************************************************************************************** */ package com.espertech.esper.supportregression.util; import com.espertech.esper.client.annotation.Hook; import com.espertech.esper.client.annotation.HookType; import com.espertech.esper.epl.join.table.*; import com.espertech.esper.supportregression.epl.SupportQueryPlanIndexHook; public interface IndexBackingTableInfo { public final static String INDEX_CALLBACK_HOOK = "@Hook(type=" + HookType.class.getName() + ".INTERNAL_QUERY_PLAN,hook='" + SupportQueryPlanIndexHook.resetGetClassName() + "')"; public final static String BACKING_SINGLE_UNIQUE = PropertyIndexedEventTableSingleUnique.class.getSimpleName(); public final static String BACKING_SINGLE_DUPS = PropertyIndexedEventTableSingle.class.getSimpleName(); public final static String BACKING_MULTI_UNIQUE = PropertyIndexedEventTableUnique.class.getSimpleName(); public final static String BACKING_MULTI_DUPS = PropertyIndexedEventTableUnadorned.class.getSimpleName(); public final static String BACKING_SORTED_COERCED = PropertySortedEventTableCoerced.class.getSimpleName(); public final static String BACKING_SORTED = PropertySortedEventTable.class.getSimpleName(); public final static String BACKING_UNINDEXED = UnindexedEventTable.class.getSimpleName(); public final static String BACKING_COMPOSITE = PropertyCompositeEventTable.class.getSimpleName(); }