Enum GraphType

java.lang.Object
java.lang.Enum<GraphType>
com.github.gbenroscience.math.graph.GraphType
All Implemented Interfaces:
Serializable, Comparable<GraphType>, java.lang.constant.Constable

public enum GraphType extends Enum<GraphType>
Author:
JIBOYE Oluwagbemiro Olaoluwa
  • Enum Constant Details

    • FunctionPlot

      public static final GraphType FunctionPlot
    • VerticePlot

      public static final GraphType VerticePlot
    • MixedInstructionsPlot

      public static final GraphType MixedInstructionsPlot
  • Method Details

    • values

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

      public static GraphType 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
    • isFunctionPlot

      public boolean isFunctionPlot()
    • isVerticePlot

      public boolean isVerticePlot()
    • isMixedInstructionsPlot

      public boolean isMixedInstructionsPlot()