Class EveData

java.lang.Object
com.smell.application.structure.EveData

public class EveData extends Object
  • Constructor Details

    • EveData

      public EveData()
  • Method Details

    • getSnowflakes

      public static HashMap<Long,String> getSnowflakes()
      Returns a map of corporation IDs to their special categories. This method ensures the map is initialized only once and is populated with predefined data representing various major alliances and their associated tags.
      Returns:
      A HashMap containing the corporation IDs and their associated "snowflake" categories.
    • isNpcCorporation

      public static boolean isNpcCorporation(long corporationId)
      Determines if a given corporation ID represents an NPC corporation. NPC corporations are typically controlled by the game system and not by players. This method identifies such corporations by checking if their IDs fall within a specific range.
      Parameters:
      corporationId - The ID of the corporation to check.
      Returns:
      true if the corporation is an NPC corporation, otherwise false.