Package org.apache.commons.collections.bidimap

Examples of org.apache.commons.collections.bidimap.TreeBidiMap


   *
   * @param stateNames <String,Integer> Map that assigns each state name an integer ID
   */
  public void registerOutputStateNames(Map<String, Integer> stateNames) {
    if (stateNames != null) {
      outputStateNames = new TreeBidiMap(stateNames);
    }
  }
View Full Code Here


     * @throws fr.xlim.ssd.capmanipulator.library.exceptions.IllegalDestinationValue
     *
     * @throws IllegalValueException
     */
    public ByteCodeConverter(String xmlConf) {
        this.mBytecode = new TreeBidiMap(new ByteCodeConfiguration().getmBytecode());
    }
View Full Code Here

TOP

Related Classes of org.apache.commons.collections.bidimap.TreeBidiMap

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.