Uses of Class
net.sf.letsparty.LetsPartyException

Packages that use LetsPartyException
net.sf.letsparty.cfg   
net.sf.letsparty.driver   
net.sf.letsparty.parser.expression   
net.sf.letsparty.statement   
net.sf.letsparty.utils   
 

Uses of LetsPartyException in net.sf.letsparty.cfg
 

Methods in net.sf.letsparty.cfg that throw LetsPartyException
 void TableNameConstructor.onPermutation()
           
protected  java.util.List BasicPartitionedColumn.getSuffixListWithCondition(boolean greaterThan, boolean equals, boolean notEquals, boolean minorThan, Value value, JdbcParsHandler jdbcParsHandler)
          Returns a list of suffixes that match the given conditions
 java.util.List BasicPartitionedColumn.getSuffixListGreaterThan(Value value, JdbcParsHandler jdbcParsHandler)
           
 java.util.List BasicPartitionedColumn.getSuffixListEqualsTo(Value value, JdbcParsHandler jdbcParsHandler)
           
 java.util.List BasicPartitionedColumn.getSuffixListGreaterEqualsTo(Value value, JdbcParsHandler jdbcParsHandler)
           
 java.util.List BasicPartitionedColumn.getSuffixListLike(Value value, JdbcParsHandler jdbcParsHandler)
           
 java.util.List BasicPartitionedColumn.getSuffixListMinorEqualsTo(Value value, JdbcParsHandler jdbcParsHandler)
           
 java.util.List BasicPartitionedColumn.getSuffixListMinorThan(Value value, JdbcParsHandler jdbcParsHandler)
           
 java.util.List BasicPartitionedColumn.getSuffixListNotEqualsTo(Value value, JdbcParsHandler jdbcParsHandler)
           
 java.util.List BasicPartitionedTable.getPartitionedTables(PartitionedTableSuffixList partitionedTableSuffixList)
           
 java.util.List PartitionedColumn.getSuffixListGreaterThan(Value value, JdbcParsHandler jdbcParsHandler)
          A list of suffixes greater than value
 java.util.List PartitionedColumn.getSuffixListGreaterEqualsTo(Value value, JdbcParsHandler jdbcParsHandler)
          A list of suffixes greater or equal to value
 java.util.List PartitionedColumn.getSuffixListMinorThan(Value value, JdbcParsHandler jdbcParsHandler)
          A list of suffixes minor than value
 java.util.List PartitionedColumn.getSuffixListMinorEqualsTo(Value value, JdbcParsHandler jdbcParsHandler)
          A list of suffixes minor or equal to value
 java.util.List PartitionedColumn.getSuffixListEqualsTo(Value value, JdbcParsHandler jdbcParsHandler)
          A list of suffixes equal to value
 java.util.List PartitionedColumn.getSuffixListNotEqualsTo(Value value, JdbcParsHandler jdbcParsHandler)
          A list of suffixes not equal to value
 java.util.List PartitionedColumn.getSuffixListLike(Value value, JdbcParsHandler jdbcParsHandler)
          A list of suffixes like value
 PartitionedTableSuffixList PartitionedTable.getPartitionedTableSuffixList()
          Returns a PartitionedTableSuffixList with all the partitions of all the columns.
 void PartitionedTable.fillPartitionedTableListNullSuffixes(PartitionedTableSuffixList partitionedTableSuffixList)
          Fill the column null suffixes with all the partitions of the column (for each null column suffix).
 int PartitionedTable.getPartitionedColumnIndex(PartitionedColumn partitionedColumn)
           
 java.lang.String PartitionedTable.getPartitionedTableNameFromSuffixes(java.lang.String[] suffixes)
          Constructs a table name given a list of column suffixes.
 java.util.List PartitionedTable.getPartitionedTables(PartitionedTableSuffixList partitionedTableSuffixList)
          A list of table names built using partitionedTableSuffixList
protected  java.io.InputStream Configuration.getConfigurationInputStream(java.lang.String resource)
           
 void Configuration.configure()
          Use the mappings and properties specified in an application resource named letsparty.cfg.xml.
 void Configuration.configure(java.lang.String resource)
          The resource is found via getConfigurationInputStream(resource).
 void Configuration.configure(java.net.URL url)
           
 void Configuration.configure(java.io.File configFile)
           
 void Configuration.configure(java.io.InputStream stream, java.lang.String resourceName)
           
protected  void Configuration.createConfig(java.io.InputStream stream, java.lang.String resourceName)
           
 

Uses of LetsPartyException in net.sf.letsparty.driver
 

Methods in net.sf.letsparty.driver that throw LetsPartyException
protected  java.util.List[] BasicPreparedStatement.constructTableListOfTables(PartTableVisitor partTableVisitor, PartExpressionVisitor partExpressionVisitor)
          For each partitioned table in the statement (from partTableVisitor) find a list of tables that matches a certain where clause (from partExpressionVisitor)
protected  PartitionedTableSuffixList BasicPreparedStatement.constructPartitionedTableSuffixList(PartitionedTable partTable, PartitionedExpression partitionedExpression)
          If partitionedExpression is null returns a list of all the partition; otherwise it returns the list of suffixes this partitionedExpression requires.
 

Uses of LetsPartyException in net.sf.letsparty.parser.expression
 

Methods in net.sf.letsparty.parser.expression that throw LetsPartyException
 java.util.List PartitionedLike.getSuffixes(JdbcParsHandler jdbcParsHandler)
           
 java.util.List PartitionedMinorEquals.getSuffixes(JdbcParsHandler jdbcParsHandler)
           
 java.util.List PartitionedGreaterEquals.getSuffixes(JdbcParsHandler jdbcParsHandler)
           
 java.util.List PartitionedMinorThan.getSuffixes(JdbcParsHandler jdbcParsHandler)
           
 java.util.List PartitionedNotEquals.getSuffixes(JdbcParsHandler jdbcParsHandler)
           
 java.util.List PartitionedGreaterThan.getSuffixes(JdbcParsHandler jdbcParsHandler)
           
 PartitionedTableSuffixList IntersectionPartitionedExpression.getPartitionedTableSuffixList(JdbcParsHandler jdbcParsHandler)
           
 PartitionedTableSuffixList UnionPartitionedExpression.getPartitionedTableSuffixList(JdbcParsHandler jdbcParsHandler)
           
 java.util.List PartitionedEqualsTo.getSuffixes(JdbcParsHandler jdbcParsHandler)
           
abstract  java.util.List MonoColumnPartitionedExpression.getSuffixes(JdbcParsHandler jdbcParsHandler)
           
 PartitionedTableSuffixList MonoColumnPartitionedExpression.getPartitionedTableSuffixList(JdbcParsHandler jdbcParsHandler)
           
 PartitionedTableSuffixList PartitionedExpression.getPartitionedTableSuffixList(JdbcParsHandler jdbcParsHandler)
           
 

Uses of LetsPartyException in net.sf.letsparty.statement
 

Methods in net.sf.letsparty.statement that throw LetsPartyException
 void UpdateHandler.onPermutation()
           
 java.lang.Object JdbcValue.getValue(JdbcParsHandler jdbcParsHandler)
           
 java.lang.Object NullValue.getValue(JdbcParsHandler jdbcParsHandler)
           
 java.lang.Object JdbcParsHandler.getValueInTypeHandler(int index)
           
 TypeHandler JdbcParsHandler.get(int index)
           
 java.lang.Object Value.getValue(JdbcParsHandler jdbcParsHandler)
           
 

Uses of LetsPartyException in net.sf.letsparty.utils
 

Methods in net.sf.letsparty.utils that throw LetsPartyException
 void Permutable.onPermutation()
           
static void Permutator.permute(java.util.List[] listOfArrays, Permutable permutable)