Enum Class AesheticCriteriaType

Object
Enum<AesheticCriteriaType>
AesheticCriteriaType
All Implemented Interfaces:
Serializable, Comparable<AesheticCriteriaType>, Constable, Enumerator

public enum AesheticCriteriaType extends Enum<AesheticCriteriaType> implements Enumerator
A representation of the literals of the enumeration 'Aeshetic Criteria Type', and utility methods for working with them. Graph-specific styling property.
See Also:
  • Enum Constant Details

  • Field Details

    • MINCROSSINGS_VALUE

      public static final int MINCROSSINGS_VALUE
      The 'MINCROSSINGS' literal value.

      If the meaning of 'MINCROSSINGS' literal object isn't clear, there really should be more of a description here...

      See Also:
    • MINAREA_VALUE

      public static final int MINAREA_VALUE
      The 'MINAREA' literal value.

      If the meaning of 'MINAREA' literal object isn't clear, there really should be more of a description here...

      See Also:
    • MINBENDS_VALUE

      public static final int MINBENDS_VALUE
      The 'MINBENDS' literal value.

      If the meaning of 'MINBENDS' literal object isn't clear, there really should be more of a description here...

      See Also:
    • MAXBENDS_VALUE

      public static final int MAXBENDS_VALUE
      The 'MAXBENDS' literal value.

      If the meaning of 'MAXBENDS' literal object isn't clear, there really should be more of a description here...

      See Also:
    • UNIFORMBENDS_VALUE

      public static final int UNIFORMBENDS_VALUE
      The 'UNIFORMBENDS' literal value.

      If the meaning of 'UNIFORMBENDS' literal object isn't clear, there really should be more of a description here...

      See Also:
    • MINSLOPES_VALUE

      public static final int MINSLOPES_VALUE
      The 'MINSLOPES' literal value.

      If the meaning of 'MINSLOPES' literal object isn't clear, there really should be more of a description here...

      See Also:
    • MINEDGELENGTH_VALUE

      public static final int MINEDGELENGTH_VALUE
      The 'MINEDGELENGTH' literal value.

      If the meaning of 'MINEDGELENGTH' literal object isn't clear, there really should be more of a description here...

      See Also:
    • MAXEDGELENGTH_VALUE

      public static final int MAXEDGELENGTH_VALUE
      The 'MAXEDGELENGTH' literal value.

      If the meaning of 'MAXEDGELENGTH' literal object isn't clear, there really should be more of a description here...

      See Also:
    • UNIFORMEDGELENGTH_VALUE

      public static final int UNIFORMEDGELENGTH_VALUE
      The 'UNIFORMEDGELENGTH' literal value.

      If the meaning of 'UNIFORMEDGELENGTH' literal object isn't clear, there really should be more of a description here...

      See Also:
    • MAXANGULARRESOLUTION_VALUE

      public static final int MAXANGULARRESOLUTION_VALUE
      The 'MAXANGULARRESOLUTION' literal value.

      If the meaning of 'MAXANGULARRESOLUTION' literal object isn't clear, there really should be more of a description here...

      See Also:
    • MINASPECTRATIO_VALUE

      public static final int MINASPECTRATIO_VALUE
      The 'MINASPECTRATIO' literal value.

      If the meaning of 'MINASPECTRATIO' literal object isn't clear, there really should be more of a description here...

      See Also:
    • MAXSYMMETRIES_VALUE

      public static final int MAXSYMMETRIES_VALUE
      The 'MAXSYMMETRIES' literal value.

      If the meaning of 'MAXSYMMETRIES' literal object isn't clear, there really should be more of a description here...

      See Also:
    • VALUES

      public static final List<AesheticCriteriaType> VALUES
      A public read-only list of all the 'Aeshetic Criteria Type' enumerators.
  • Method Details

    • values

      public static AesheticCriteriaType[] 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 AesheticCriteriaType 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
    • get

      public static AesheticCriteriaType get(String literal)
      Returns the 'Aeshetic Criteria Type' literal with the specified literal value.
      Parameters:
      literal - the literal.
      Returns:
      the matching enumerator or null.
    • getByName

      public static AesheticCriteriaType getByName(String name)
      Returns the 'Aeshetic Criteria Type' literal with the specified name.
      Parameters:
      name - the name.
      Returns:
      the matching enumerator or null.
    • get

      public static AesheticCriteriaType get(int value)
      Returns the 'Aeshetic Criteria Type' literal with the specified integer value.
      Parameters:
      value - the integer value.
      Returns:
      the matching enumerator or null.
    • getValue

      public int getValue()
      Specified by:
      getValue in interface Enumerator
    • getName

      public String getName()
      Specified by:
      getName in interface Enumerator
    • getLiteral

      public String getLiteral()
      Specified by:
      getLiteral in interface Enumerator
    • toString

      public String toString()
      Returns the literal value of the enumerator, which is its string representation.
      Overrides:
      toString in class Enum<AesheticCriteriaType>