Package com.asakusafw.dmdl.model

Examples of com.asakusafw.dmdl.model.LiteralKind


    }

    private boolean acceptsLiteral(PropertyType type, AstLiteral value) {
        assert type != null;
        assert value != null;
        LiteralKind literalKind = value.getKind();
        switch (type.getKind()) {
        case BOOLEAN:
            return literalKind == LiteralKind.BOOLEAN;
        case BYTE:
        case SHORT:
View Full Code Here

TOP

Related Classes of com.asakusafw.dmdl.model.LiteralKind

Copyright © 2018 www.massapicom. 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.