Package de.justi.yagw2api.arenanet

Examples of de.justi.yagw2api.arenanet.IWVWMapDTO


  }

  @Override
  public Optional<IWVWMapDTO> getMapForTypeString(String dtoMapTypeString) {
    checkNotNull(dtoMapTypeString);
    IWVWMapDTO map = null;
    int index = 0;
    while ((map == null) && (index < this.maps.length)) {
      map = this.maps[index].getType().equalsIgnoreCase(dtoMapTypeString) ? this.maps[index] : map;
      index++;
    }
View Full Code Here

TOP

Related Classes of de.justi.yagw2api.arenanet.IWVWMapDTO

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.