Enum Class Symbol

java.lang.Object
java.lang.Enum<Symbol>
org.ejml.equation.Symbol
All Implemented Interfaces:
Serializable, Comparable<Symbol>, Constable

public enum Symbol extends Enum<Symbol>
Types of low level operators which can be applied in the code
  • Enum Constant Details

    • PLUS

      public static final Symbol PLUS
    • MINUS

      public static final Symbol MINUS
    • TIMES

      public static final Symbol TIMES
    • LDIVIDE

      public static final Symbol LDIVIDE
    • RDIVIDE

      public static final Symbol RDIVIDE
    • POWER

      public static final Symbol POWER
    • PERIOD

      public static final Symbol PERIOD
    • ELEMENT_TIMES

      public static final Symbol ELEMENT_TIMES
    • ELEMENT_DIVIDE

      public static final Symbol ELEMENT_DIVIDE
    • ELEMENT_POWER

      public static final Symbol ELEMENT_POWER
    • ASSIGN

      public static final Symbol ASSIGN
    • PAREN_LEFT

      public static final Symbol PAREN_LEFT
    • PAREN_RIGHT

      public static final Symbol PAREN_RIGHT
    • BRACKET_LEFT

      public static final Symbol BRACKET_LEFT
    • BRACKET_RIGHT

      public static final Symbol BRACKET_RIGHT
    • GREATER_THAN

      public static final Symbol GREATER_THAN
    • LESS_THAN

      public static final Symbol LESS_THAN
    • GREATER_THAN_EQ

      public static final Symbol GREATER_THAN_EQ
    • LESS_THAN_EQ

      public static final Symbol LESS_THAN_EQ
    • COMMA

      public static final Symbol COMMA
    • TRANSPOSE

      public static final Symbol TRANSPOSE
    • COLON

      public static final Symbol COLON
    • SEMICOLON

      public static final Symbol SEMICOLON
  • Method Details

    • values

      public static Symbol[] 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 Symbol 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
    • lookup

      public static Symbol lookup(char c)
    • lookupElementWise

      public static Symbol lookupElementWise(char c)