Examples of Extract


Examples of com.facebook.presto.sql.tree.Extract

            if (value == null) {
                return null;
            }

            if (value instanceof Expression) {
                return new Extract(toExpression(value), node.getField());
            }

            long time = (long) value;
            switch (node.getField()) {
                case CENTURY:
View Full Code Here

Examples of com.facebook.presto.sql.tree.Extract

            if (value == null) {
                return null;
            }

            if (value instanceof Expression) {
                return new Extract(toExpression(value), node.getField());
            }

            long time = (long) value;
            switch (node.getField()) {
                case CENTURY:
View Full Code Here

Examples of com.facebook.presto.sql.tree.Extract

            if (value == null) {
                return null;
            }

            if (value instanceof Expression) {
                return new Extract(toExpression(value), node.getField());
            }

            long time = (long) value;
            switch (node.getField()) {
                case CENTURY:
View Full Code Here

Examples of com.facebook.presto.sql.tree.Extract

            if (value == null) {
                return null;
            }

            if (value instanceof Expression) {
                return new Extract(toExpression(value), node.getField());
            }

            long time = (long) value;
            switch (node.getField()) {
                case CENTURY:
View Full Code Here

Examples of com.facebook.presto.sql.tree.Extract

            if (value == null) {
                return null;
            }

            if (value instanceof Expression) {
                return new Extract(toExpression(value), node.getField());
            }

            long time = (long) value;
            switch (node.getField()) {
                case CENTURY:
View Full Code Here

Examples of com.facebook.presto.sql.tree.Extract

            if (value == null) {
                return null;
            }

            if (value instanceof Expression) {
                return new Extract(toExpression(value), node.getField());
            }

            long time = (long) value;
            switch (node.getField()) {
                case CENTURY:
View Full Code Here

Examples of com.facebook.presto.sql.tree.Extract

            if (value == null) {
                return null;
            }

            if (value instanceof Expression) {
                return new Extract(toExpression(value), node.getField());
            }

            long time = (long) value;
            switch (node.getField()) {
                case CENTURY:
View Full Code Here

Examples of com.sk89q.skmcl.minecraft.model.Library.Extract

        // Add libraries to classpath or extract the libraries as necessary
        for (Library library : manifest.getLibraries()) {
            File path = new File(getLibrariesDir(), library.getPath(context.getEnvironment()));

            if (path.exists()) {
                Extract extract = library.getExtract();
                if (extract != null) {
                    ZipExtract zipExtract = new ZipExtract(
                            new FileResource(path), extractDir);
                    zipExtract.setExclude(extract.getExclude());
                    zipExtract.run();
                } else {
                    builder.classPath(path);
                }
            }
View Full Code Here

Examples of org.neo4j.cypherdsl.query.Extract

    {
        Query.checkNull( name, "Name" );
        Query.checkNull( iterable, "Iterable" );
        Query.checkNull( expression, "Expression" );

        return new Value( new Extract( name, iterable, expression ) );
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.