Package com.foundationdb.server.types

Examples of com.foundationdb.server.types.TInputSet$PickingNormalizer


        return this;
    }

    public TInputSetBuilder vararg(TClass targetType, int... covering) {
        assert vararg == null : vararg;
        vararg = new TInputSet(targetType, BitSets.of(covering), true, false, nextNormalizer);
        nextNormalizer = null;
        inputSets.add(vararg);
        exactsBuilder.setVararg(exact);
        return this;
    }
View Full Code Here


        return this;
    }

    public TInputSetBuilder pickingVararg(TClass targetType, int... covering) {
        assert vararg == null : vararg;
        vararg = new TInputSet(targetType, BitSets.of(covering), true, true, nextNormalizer);
        inputSets.add(vararg);
        nextNormalizer = null;
        exactsBuilder.setVararg(exact);
        return this;
    }
View Full Code Here

TOP

Related Classes of com.foundationdb.server.types.TInputSet$PickingNormalizer

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.