Enum UtilityAssociationType

  • All Implemented Interfaces:
    java.io.Serializable, java.lang.Comparable<UtilityAssociationType>

    public enum UtilityAssociationType
    extends java.lang.Enum<UtilityAssociationType>
    An enumeration of the various types of associations supported by the utility network.
    Since:
    100.7.0
    • Method Summary

      All Methods Static Methods Concrete Methods 
      Modifier and Type Method Description
      static UtilityAssociationType valueOf​(java.lang.String name)
      Returns the enum constant of this type with the specified name.
      static UtilityAssociationType[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      • Methods inherited from class java.lang.Enum

        clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
      • Methods inherited from class java.lang.Object

        getClass, notify, notifyAll, wait, wait, wait
    • Enum Constant Detail

      • CONNECTIVITY

        public static final UtilityAssociationType CONNECTIVITY
        The association represents connectivity between two junctions.
        Since:
        100.7.0
      • ATTACHMENT

        public static final UtilityAssociationType ATTACHMENT
        The association represents a structural attachment.
        Since:
        100.7.0
      • JUNCTION_EDGE_OBJECT_CONNECTIVITY_FROM_SIDE

        public static final UtilityAssociationType JUNCTION_EDGE_OBJECT_CONNECTIVITY_FROM_SIDE
        The association represents a junction or non-spatial junction connected to the end point of a non-spatial edge.
        Since:
        100.10.0
      • JUNCTION_EDGE_OBJECT_CONNECTIVITY_MIDSPAN

        public static final UtilityAssociationType JUNCTION_EDGE_OBJECT_CONNECTIVITY_MIDSPAN
        The association represents a junction or non-spatial junction connected along the midspan of a non-spatial edge.
        Since:
        100.10.0
      • JUNCTION_EDGE_OBJECT_CONNECTIVITY_TO_SIDE

        public static final UtilityAssociationType JUNCTION_EDGE_OBJECT_CONNECTIVITY_TO_SIDE
        The association represents a junction or non-spatial junction connected to the start point of a non-spatial edge.
        Since:
        100.10.0
    • Method Detail

      • values

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

        public static UtilityAssociationType valueOf​(java.lang.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:
        java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
        java.lang.NullPointerException - if the argument is null