Enum TSConversions

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

    public enum TSConversions
    extends java.lang.Enum<TSConversions>
    Possible conversions on a transition system.
    Author:
    HVERBEEK
    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
      EXTEND
      Adds missing transitions in incomplete diamond structures.
      KILLSELFLOOPS
      Removes self loops from the transition system.
      MERGEBYFUTURE
      Merges states which have identical future.
      MERGEBYHISTORY
      Merges states which have identical history.
      MERGEBYINPUT
      Merges states which have identical influx labels.
      MERGEBYOUTPUT
      Merges states which have identical outflux labels.
    • Method Summary

      All Methods Static Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.String getLabel()
      Returns the label of the conversion.
      static TSConversions valueOf​(java.lang.String name)
      Returns the enum constant of this type with the specified name.
      static TSConversions[] 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

      • KILLSELFLOOPS

        public static final TSConversions KILLSELFLOOPS
        Removes self loops from the transition system.
      • EXTEND

        public static final TSConversions EXTEND
        Adds missing transitions in incomplete diamond structures.
      • MERGEBYOUTPUT

        public static final TSConversions MERGEBYOUTPUT
        Merges states which have identical outflux labels.
      • MERGEBYINPUT

        public static final TSConversions MERGEBYINPUT
        Merges states which have identical influx labels.
      • MERGEBYFUTURE

        public static final TSConversions MERGEBYFUTURE
        Merges states which have identical future.
      • MERGEBYHISTORY

        public static final TSConversions MERGEBYHISTORY
        Merges states which have identical history.
    • Method Detail

      • values

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

        public static TSConversions 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
      • getLabel

        public java.lang.String getLabel()
        Returns the label of the conversion.
        Returns:
        The label of the conversion.