Enum Class ReferenceHandling

java.lang.Object
java.lang.Enum<ReferenceHandling>
com.inductiveautomation.ignition.gateway.config.ReferenceHandling
All Implemented Interfaces:
Serializable, Comparable<ReferenceHandling>, Constable

public enum ReferenceHandling extends Enum<ReferenceHandling>
Represents the choice to make when reference(s) are found when renaming a resource.
  • Enum Constant Details

    • ABORT

      public static final ReferenceHandling ABORT
      Abort the rename operation
    • IGNORE

      public static final ReferenceHandling IGNORE
      Ignore the references. After the rename, the references will continue to reference the old name and the references will be broken
    • UPDATE

      public static final ReferenceHandling UPDATE
      Update the references to the new name
  • Method Details

    • values

      public static ReferenceHandling[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static ReferenceHandling valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified name
      NullPointerException - if the argument is null