Enum TripMapPointType

  • All Implemented Interfaces:
    Serializable, Comparable<TripMapPointType>

    public enum TripMapPointType
    extends Enum<TripMapPointType>
    Attention : les noms des constantes sont utilisées dans la feuille de style de rendu. Si on change les noms ici, il faut réimpacter dans le fichier style.xml
    Author:
    Tony Chemit - dev@tchemit.fr
    • Enum Constant Detail

      • seineDepartureHarbour

        public static final TripMapPointType seineDepartureHarbour
      • seineActivityInHarbour

        public static final TripMapPointType seineActivityInHarbour
      • seineActivityWithFreeSchoolType

        public static final TripMapPointType seineActivityWithFreeSchoolType
      • seineActivityWithObjectSchoolType

        public static final TripMapPointType seineActivityWithObjectSchoolType
      • longlineDepartureHarbour

        public static final TripMapPointType longlineDepartureHarbour
      • longlineLandingHarbour

        public static final TripMapPointType longlineLandingHarbour
      • longlineActivityInHarbour

        public static final TripMapPointType longlineActivityInHarbour
      • longlineActivityWithSettingStart

        public static final TripMapPointType longlineActivityWithSettingStart
      • longlineActivityWithSettingEnd

        public static final TripMapPointType longlineActivityWithSettingEnd
      • longlineActivityWithHaulingStart

        public static final TripMapPointType longlineActivityWithHaulingStart
      • longlineActivityWithHaulingEnd

        public static final TripMapPointType longlineActivityWithHaulingEnd
      • longlineActivityWithInteraction

        public static final TripMapPointType longlineActivityWithInteraction
      • longlineActivityWithStation

        public static final TripMapPointType longlineActivityWithStation
    • Method Detail

      • values

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

        public static TripMapPointType 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