Enum AccountType

    • Enum Constant Detail

      • NORMAL

        public static final AccountType NORMAL
        Deprecated.
        Normal account type.
      • IRONMAN

        public static final AccountType IRONMAN
        Deprecated.
        Ironman account type.
      • ULTIMATE_IRONMAN

        public static final AccountType ULTIMATE_IRONMAN
        Deprecated.
        Ultimate ironman account type.
      • HARDCORE_IRONMAN

        public static final AccountType HARDCORE_IRONMAN
        Deprecated.
        Hardcore ironman account type.
      • GROUP_IRONMAN

        public static final AccountType GROUP_IRONMAN
        Deprecated.
        Group ironman account type
      • HARDCORE_GROUP_IRONMAN

        public static final AccountType HARDCORE_GROUP_IRONMAN
        Deprecated.
        Hardcore group ironman account type
    • Method Detail

      • values

        public static AccountType[] values()
        Deprecated.
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (AccountType c : AccountType.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static AccountType valueOf​(String name)
        Deprecated.
        Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
        Parameters:
        name - the name of the enum constant to be returned.
        Returns:
        the enum constant with the specified name
        Throws:
        IllegalArgumentException - if this enum type has no constant with the specified name
        NullPointerException - if the argument is null
      • isIronman

        public boolean isIronman()
        Deprecated.
        Checks whether this type is a non-group ironman.
        Returns:
        true if the type is any of the non-group ironman types.
      • isGroupIronman

        public boolean isGroupIronman()
        Deprecated.
        Checks whether this type is a group ironman.
        Returns:
        true if the type is either of the group ironman types.