本文整理匯總了Java中org.apache.cassandra.cql3.Term.MultiItemTerminal類的典型用法代碼示例。如果您正苦於以下問題:Java MultiItemTerminal類的具體用法?Java MultiItemTerminal怎麽用?Java MultiItemTerminal使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。
MultiItemTerminal類屬於org.apache.cassandra.cql3.Term包,在下文中一共展示了MultiItemTerminal類的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: testBuildBoundWithMultiInRestrictions
import org.apache.cassandra.cql3.Term.MultiItemTerminal; //導入依賴的package包/類
/**
* Test '(clustering_0, clustering_1) IN ((1, 2), (2, 3))' with two clustering column
*/
@Test
public void testBuildBoundWithMultiInRestrictions() throws InvalidRequestException
{
ByteBuffer value1 = ByteBufferUtil.bytes(1);
ByteBuffer value2 = ByteBufferUtil.bytes(2);
ByteBuffer value3 = ByteBufferUtil.bytes(3);
List<MultiItemTerminal> terms = asList(toMultiItemTerminal(value1, value2), toMultiItemTerminal(value2, value3));
MultiColumnRestriction.IN in = new MultiColumnRestriction.InWithValues(terms);
Restriction[] restrictions = new Restriction[] { in, in };
List<Composite> bounds = executeBuildBound(restrictions, Bound.START);
assertEquals(2, bounds.size());
assertComposite(bounds.get(0), value1, value2, EOC.START);
assertComposite(bounds.get(1), value2, value3, EOC.START);
bounds = executeBuildBound(restrictions, Bound.END);
assertEquals(2, bounds.size());
assertComposite(bounds.get(0), value1, value2, EOC.END);
assertComposite(bounds.get(1), value2, value3, EOC.END);
}
示例2: toMultiItemTerminal
import org.apache.cassandra.cql3.Term.MultiItemTerminal; //導入依賴的package包/類
/**
* Converts the specified values into a <code>MultiItemTerminal</code>.
*
* @param values the values to convert.
* @return the term corresponding to the specified values.
*/
private static MultiItemTerminal toMultiItemTerminal(ByteBuffer... values)
{
return new Tuples.Value(values);
}