Enum SeasonalModelType

  • All Implemented Interfaces:
    Serializable, Comparable<SeasonalModelType>

    public enum SeasonalModelType
    extends Enum<SeasonalModelType>
    Type of seasonal model used in Global Pressure Temperature models.
    Since:
    12.1
    Author:
    Luc Maisonobe
    See Also:
    "Landskron, D. & Böhm, J. J Geod (2018) VMF3/GPT3: refined discrete and empirical troposphere mapping functions 92: 349. https://doi.org/10.1007/s00190-017-1066-2"
    • Method Detail

      • values

        public static SeasonalModelType[] values()
        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 (SeasonalModelType c : SeasonalModelType.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static SeasonalModelType valueOf​(String name)
        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
      • parseType

        public static SeasonalModelType parseType​(String field)
        Parse a field to get the type.
        Parameters:
        field - field to parse
        Returns:
        the type corresponding to the field
        Throws:
        IllegalArgumentException - if the field does not correspond to a type