Examples of BooleanConfOption


Examples of org.apache.giraph.conf.BooleanConfOption

    public JythonGraphTypeOptions(GraphType graphType) {
      this.graphType = graphType;
      jythonClassNameOption = new StrConfOption("giraph.jython." +
          graphType.dotString() + ".class.name", null,
          "Name of class in Jython implementing " + graphType.spaceString());
      needsWrapperOption = new BooleanConfOption("giraph.jython." +
          graphType.dotString() + ".needs.wrapper", false,
          "Whether the " + graphType.spaceString() +
          " jython type needs a wrapper");
      languageOption = EnumConfOption.create("giraph." +
          graphType.dotString() + ".language", Language.class, Language.JAVA,
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.