Package it.unimi.dsi.parser

Examples of it.unimi.dsi.parser.Element


  /** A (quick) map from element-type names to element types. */
  static final Object2ObjectOpenHashMap<String, Element> NAME2ELEMENT = new Object2ObjectOpenHashMap<String, Element>(
      Hash.DEFAULT_INITIAL_SIZE, .5f);

  static Element newElement(final String name) {
    final Element element = new Element(name);
    NAME2ELEMENT.put(element.name.toString(), element);
    return element;
  }
View Full Code Here


    return element;
  }

  static Element newElement(final String name, boolean breaksFlow,
      boolean isSimple) {
    final Element element = new Element(name, breaksFlow, isSimple);
    NAME2ELEMENT.put(element.name.toString(), element);
    return element;
  }
View Full Code Here

TOP

Related Classes of it.unimi.dsi.parser.Element

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.