Enum NoEdgeHandling

    • Enum Constant Detail

      • SELF_LOOP_ON_DISCONNECTED

        public static final NoEdgeHandling SELF_LOOP_ON_DISCONNECTED
      • EXCEPTION_ON_DISCONNECTED

        public static final NoEdgeHandling EXCEPTION_ON_DISCONNECTED
      • PADDING_ON_DISCONNECTED

        public static final NoEdgeHandling PADDING_ON_DISCONNECTED
      • CUTOFF_ON_DISCONNECTED

        public static final NoEdgeHandling CUTOFF_ON_DISCONNECTED
      • RESTART_ON_DISCONNECTED

        public static final NoEdgeHandling RESTART_ON_DISCONNECTED
    • Method Detail

      • values

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

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