当前位置: 首页>>代码示例>>Java>>正文


Java AssignementTestable.isAssignableTo方法代码示例

本文整理汇总了Java中org.apache.cassandra.cql3.AssignementTestable.isAssignableTo方法的典型用法代码示例。如果您正苦于以下问题:Java AssignementTestable.isAssignableTo方法的具体用法?Java AssignementTestable.isAssignableTo怎么用?Java AssignementTestable.isAssignableTo使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在org.apache.cassandra.cql3.AssignementTestable的用法示例。


在下文中一共展示了AssignementTestable.isAssignableTo方法的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: validateTypes

import org.apache.cassandra.cql3.AssignementTestable; //导入方法依赖的package包/类
private static void validateTypes(String keyspace, Function fun, List<? extends AssignementTestable> providedArgs, ColumnSpecification receiver) throws InvalidRequestException
{
    if (!receiver.type.isValueCompatibleWith(fun.returnType()))
        throw new InvalidRequestException(String.format("Type error: cannot assign result of function %s (type %s) to %s (type %s)", fun.name(), fun.returnType().asCQL3Type(), receiver, receiver.type.asCQL3Type()));

    if (providedArgs.size() != fun.argsType().size())
        throw new InvalidRequestException(String.format("Invalid number of arguments in call to function %s: %d required but %d provided", fun.name(), fun.argsType().size(), providedArgs.size()));

    for (int i = 0; i < providedArgs.size(); i++)
    {
        AssignementTestable provided = providedArgs.get(i);

        // If the concrete argument is a bind variables, it can have any type.
        // We'll validate the actually provided value at execution time.
        if (provided == null)
            continue;

        ColumnSpecification expected = makeArgSpec(receiver, fun, i);
        if (!provided.isAssignableTo(keyspace, expected))
            throw new InvalidRequestException(String.format("Type error: %s cannot be passed as argument %d of function %s of type %s", provided, i, fun.name(), expected.type.asCQL3Type()));
    }
}
 
开发者ID:vcostet,项目名称:cassandra-kmean,代码行数:23,代码来源:Functions.java

示例2: isValidType

import org.apache.cassandra.cql3.AssignementTestable; //导入方法依赖的package包/类
private static boolean isValidType(String keyspace, Function fun, List<? extends AssignementTestable> providedArgs, ColumnSpecification receiver) throws InvalidRequestException
{
    if (!receiver.type.isValueCompatibleWith(fun.returnType()))
        return false;

    if (providedArgs.size() != fun.argsType().size())
        return false;

    for (int i = 0; i < providedArgs.size(); i++)
    {
        AssignementTestable provided = providedArgs.get(i);

        // If the concrete argument is a bind variables, it can have any type.
        // We'll validate the actually provided value at execution time.
        if (provided == null)
            continue;

        ColumnSpecification expected = makeArgSpec(receiver, fun, i);
        if (!provided.isAssignableTo(keyspace, expected))
            return false;
    }
    return true;
}
 
开发者ID:vcostet,项目名称:cassandra-kmean,代码行数:24,代码来源:Functions.java

示例3: validateTypes

import org.apache.cassandra.cql3.AssignementTestable; //导入方法依赖的package包/类
private static void validateTypes(Function fun, List<? extends AssignementTestable> providedArgs, ColumnSpecification receiver) throws InvalidRequestException
{
    if (!receiver.type.asCQL3Type().equals(fun.returnType().asCQL3Type()))
        throw new InvalidRequestException(String.format("Type error: cannot assign result of function %s (type %s) to %s (type %s)", fun.name(), fun.returnType().asCQL3Type(), receiver, receiver.type.asCQL3Type()));

    if (providedArgs.size() != fun.argsType().size())
        throw new InvalidRequestException(String.format("Invalid number of arguments in call to function %s: %d required but %d provided", fun.name(), fun.argsType().size(), providedArgs.size()));

    for (int i = 0; i < providedArgs.size(); i++)
    {
        AssignementTestable provided = providedArgs.get(i);

        // If the concrete argument is a bind variables, it can have any type.
        // We'll validate the actually provided value at execution time.
        if (provided == null)
            continue;

        ColumnSpecification expected = makeArgSpec(receiver, fun, i);
        if (!provided.isAssignableTo(expected))
            throw new InvalidRequestException(String.format("Type error: %s cannot be passed as argument %d of function %s of type %s", provided, i, fun.name(), expected.type.asCQL3Type()));
    }
}
 
开发者ID:pgaref,项目名称:ACaZoo,代码行数:23,代码来源:Functions.java

示例4: isValidType

import org.apache.cassandra.cql3.AssignementTestable; //导入方法依赖的package包/类
private static boolean isValidType(Function fun, List<? extends AssignementTestable> providedArgs, ColumnSpecification receiver)
{
    if (!receiver.type.asCQL3Type().equals(fun.returnType().asCQL3Type()))
        return false;

    if (providedArgs.size() != fun.argsType().size())
        return false;

    for (int i = 0; i < providedArgs.size(); i++)
    {
        AssignementTestable provided = providedArgs.get(i);

        // If the concrete argument is a bind variables, it can have any type.
        // We'll validate the actually provided value at execution time.
        if (provided == null)
            continue;

        ColumnSpecification expected = makeArgSpec(receiver, fun, i);
        if (!provided.isAssignableTo(expected))
            return false;
    }
    return true;
}
 
开发者ID:pgaref,项目名称:ACaZoo,代码行数:24,代码来源:Functions.java

示例5: validateTypes

import org.apache.cassandra.cql3.AssignementTestable; //导入方法依赖的package包/类
private static void validateTypes(String keyspace, Function fun, List<? extends AssignementTestable> providedArgs, ColumnSpecification receiver) throws InvalidRequestException
{
    if (!receiver.type.asCQL3Type().equals(fun.returnType().asCQL3Type()))
        throw new InvalidRequestException(String.format("Type error: cannot assign result of function %s (type %s) to %s (type %s)", fun.name(), fun.returnType().asCQL3Type(), receiver, receiver.type.asCQL3Type()));

    if (providedArgs.size() != fun.argsType().size())
        throw new InvalidRequestException(String.format("Invalid number of arguments in call to function %s: %d required but %d provided", fun.name(), fun.argsType().size(), providedArgs.size()));

    for (int i = 0; i < providedArgs.size(); i++)
    {
        AssignementTestable provided = providedArgs.get(i);

        // If the concrete argument is a bind variables, it can have any type.
        // We'll validate the actually provided value at execution time.
        if (provided == null)
            continue;

        ColumnSpecification expected = makeArgSpec(receiver, fun, i);
        if (!provided.isAssignableTo(keyspace, expected))
            throw new InvalidRequestException(String.format("Type error: %s cannot be passed as argument %d of function %s of type %s", provided, i, fun.name(), expected.type.asCQL3Type()));
    }
}
 
开发者ID:mafernandez-stratio,项目名称:cassandra-cqlMod,代码行数:23,代码来源:Functions.java

示例6: isValidType

import org.apache.cassandra.cql3.AssignementTestable; //导入方法依赖的package包/类
private static boolean isValidType(String keyspace, Function fun, List<? extends AssignementTestable> providedArgs, ColumnSpecification receiver) throws InvalidRequestException
{
    if (!receiver.type.asCQL3Type().equals(fun.returnType().asCQL3Type()))
        return false;

    if (providedArgs.size() != fun.argsType().size())
        return false;

    for (int i = 0; i < providedArgs.size(); i++)
    {
        AssignementTestable provided = providedArgs.get(i);

        // If the concrete argument is a bind variables, it can have any type.
        // We'll validate the actually provided value at execution time.
        if (provided == null)
            continue;

        ColumnSpecification expected = makeArgSpec(receiver, fun, i);
        if (!provided.isAssignableTo(keyspace, expected))
            return false;
    }
    return true;
}
 
开发者ID:mafernandez-stratio,项目名称:cassandra-cqlMod,代码行数:24,代码来源:Functions.java


注:本文中的org.apache.cassandra.cql3.AssignementTestable.isAssignableTo方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。