Uses of Interface
org.modeshape.graph.query.validate.Schemata.Column

Packages that use Schemata.Column
org.modeshape.graph.query.validate This package provides the interfaces that define the tables and columns that can be queried. 
 

Uses of Schemata.Column in org.modeshape.graph.query.validate
 

Methods in org.modeshape.graph.query.validate that return Schemata.Column
 Schemata.Column Schemata.Table.getColumn(String name)
          Get the information for a column with the supplied name within this table.
protected  Schemata.Column ImmutableSchemata.MutableTable.getColumn(String name)
           
protected  Schemata.Column Validator.verify(SelectorName selectorName, String propertyName, boolean columnIsRequired)
           
 

Methods in org.modeshape.graph.query.validate that return types with arguments of type Schemata.Column
 List<Schemata.Column> Schemata.Table.getColumns()
          Get the queryable columns in this table.
 Set<Schemata.Column> Schemata.Key.getColumns()
          Get the columns that make up this key.
 Set<Schemata.Column> ImmutableKey.getColumns()
          Get the columns that make up this key.
 Map<String,Schemata.Column> Schemata.Table.getColumnsByName()
          Get the queryable columns in this table.
 List<Schemata.Column> Schemata.Table.getSelectAllColumns()
          Get the queryable columns in this table that should be used in case of "SELECT *".
 Map<String,Schemata.Column> Schemata.Table.getSelectAllColumnsByName()
          Get the queryable columns in this table that should be used in case of "SELECT *".
 

Methods in org.modeshape.graph.query.validate with parameters of type Schemata.Column
protected  void ImmutableSchemata.MutableTable.addColumn(Schemata.Column column)
           
 Schemata.Key Schemata.Table.getKey(Schemata.Column... columns)
          Obtain this table's key that contains exactly those columns listed.
 boolean Schemata.Key.hasColumns(Schemata.Column... columns)
          Determine whether this key contains exactly those columns listed.
 boolean ImmutableKey.hasColumns(Schemata.Column... columns)
          Determine whether this key contains exactly those columns listed.
 boolean Schemata.Table.hasKey(Schemata.Column... columns)
          Determine whether this table has a key that contains exactly those columns listed.
 

Method parameters in org.modeshape.graph.query.validate with type arguments of type Schemata.Column
protected  boolean ImmutableSchemata.MutableTable.addKey(Collection<Schemata.Column> keyColumns)
           
 Schemata.Key Schemata.Table.getKey(Iterable<Schemata.Column> columns)
          Obtain this table's key that contains exactly those columns listed.
 boolean Schemata.Key.hasColumns(Iterable<Schemata.Column> columns)
          Determine whether this key contains exactly those columns listed.
 boolean ImmutableKey.hasColumns(Iterable<Schemata.Column> columns)
          Determine whether this key contains exactly those columns listed.
 boolean Schemata.Table.hasKey(Iterable<Schemata.Column> columns)
          Determine whether this table has a key that contains exactly those columns listed.
 

Constructors in org.modeshape.graph.query.validate with parameters of type Schemata.Column
ImmutableKey(Schemata.Column... columns)
           
 

Constructor parameters in org.modeshape.graph.query.validate with type arguments of type Schemata.Column
ImmutableKey(Iterable<Schemata.Column> columns)
           
ImmutableSchemata.MutableTable(String name, List<Schemata.Column> columns, boolean extraColumns)
           
 



Copyright © 2008-2011 JBoss, a division of Red Hat. All Rights Reserved.