Package forestry.api.arboriculture

Examples of forestry.api.arboriculture.EnumGrowthConditions.ordinal()


    EnumGrowthConditions result = EnumGrowthConditions.HOSTILE;
    for (EnumGrowthConditions cond : conditions) {
      if (cond == EnumGrowthConditions.HOSTILE)
        return EnumGrowthConditions.HOSTILE;

      if (cond.ordinal() > result.ordinal())
        result = cond;
    }

    return result;
  }
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.