Uses of Class
com.amazon.carbonado.info.Direction

Packages that use Direction
com.amazon.carbonado.capability Common capabilities for repositories. 
com.amazon.carbonado.info Introspection support for Storables. 
com.amazon.carbonado.qe Support for implementing a Query Engine. 
com.amazon.carbonado.spi Service Provider Interface for Carbonado. 
com.amazon.carbonado.synthetic Support for dynamic creation of storables, intended for internal use by repository implementations. 
 

Uses of Direction in com.amazon.carbonado.capability
 

Methods in com.amazon.carbonado.capability that return Direction
 Direction[] IndexInfo.getPropertyDirections()
          Returns the directions of all the properties in this index.
 

Uses of Direction in com.amazon.carbonado.info
 

Methods in com.amazon.carbonado.info that return Direction
static Direction Direction.fromCharacter(char c)
          Returns ASCENDING for '+', DESCENDING for '-', UNSPECIFIED for anything else.
 Direction OrderedProperty.getDirection()
           
 Direction StorableIndex.getPropertyDirection(int index)
          Returns the requested direction of a specific property in this index.
 Direction[] StorableIndex.getPropertyDirections()
          Returns a new array with all the property directions in it.
 Direction Direction.reverse()
          Returns the reverse direction of this.
static Direction Direction.valueOf(String name)
          Returns the enum constant of this type with the specified name.
static Direction[] Direction.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 

Methods in com.amazon.carbonado.info with parameters of type Direction
 StorableIndex<S> StorableIndex.addProperty(StorableProperty<S> property, Direction direction)
          Returns a StorableIndex with the given property added.
 OrderedProperty<S> OrderedProperty.direction(Direction direction)
           
static
<S extends Storable>
OrderedProperty<S>
OrderedProperty.get(ChainedProperty<S> property, Direction direction)
          Returns a canonical instance.
static
<S extends Storable>
OrderedProperty<S>
OrderedProperty.get(StorableProperty<S> property, Direction direction)
          Returns a canonical instance.
static
<S extends Storable>
OrderedProperty<S>
OrderedProperty.parse(StorableInfo<S> info, String str, Direction defaultDirection)
          Parses an ordering property, which may start with a '+' or '-' to indicate direction.
 StorableIndex<S> StorableIndex.setDefaultDirection(Direction direction)
          Returns a StorableIndex instance with all unspecified directions set to the given direction.
 

Constructors in com.amazon.carbonado.info with parameters of type Direction
StorableIndex(OrderedProperty<S>[] properties, Direction direction)
          Creates a StorableIndex from OrderedProperties.
StorableIndex(StorableKey<S> key, Direction direction)
          Creates a StorableIndex from a StorableKey.
StorableIndex(StorableProperty<S>[] properties, Direction[] directions)
          Creates a StorableIndex from the given properties and matching directions.
StorableIndex(StorableProperty<S>[] properties, Direction[] directions, boolean unique)
          Creates a StorableIndex from the given properties and matching directions.
StorableIndex(StorableProperty<S>[] properties, Direction[] directions, boolean unique, boolean clustered)
          Creates a StorableIndex from the given properties and matching directions.
 

Uses of Direction in com.amazon.carbonado.qe
 

Methods in com.amazon.carbonado.qe with parameters of type Direction
 void StorableIndexSet.addIndexes(StorableInfo<S> info, Direction defaultDirection)
          Adds all the indexes of the given storable.
 void StorableIndexSet.reduce(Direction defaultDirection)
          Reduces the size of the set by removing redundant indexes, and merges others together.
 void StorableIndexSet.setDefaultDirection(Direction defaultDirection)
          Set the default direction for all index properties.
 

Uses of Direction in com.amazon.carbonado.spi
 

Methods in com.amazon.carbonado.spi that return Direction
 Direction[] IndexInfoImpl.getPropertyDirections()
           
 

Constructors in com.amazon.carbonado.spi with parameters of type Direction
IndexInfoImpl(String name, boolean unique, boolean clustered, String[] propertyNames, Direction[] propertyDirections)
           
 

Uses of Direction in com.amazon.carbonado.synthetic
 

Methods in com.amazon.carbonado.synthetic with parameters of type Direction
 SyntheticProperty SyntheticStorableReferenceBuilder.addKeyProperty(String name, Direction direction)
          Add a property to the primary key which is a member of the Storable type being referenced by this one.
 void SyntheticPropertyList.addProperty(String propertyName, Direction direction)
          Adds a property to this index, with the specified direction.
 



Copyright © 2006-2009 Amazon Technologies, Inc.. All Rights Reserved.