Enum Class CanvasOp.Type

java.lang.Object
java.lang.Enum<CanvasOp.Type>
com.acmerobotics.dashboard.canvas.CanvasOp.Type
All Implemented Interfaces:
Serializable, Comparable<CanvasOp.Type>, Constable
Enclosing class:
CanvasOp

public static enum CanvasOp.Type extends Enum<CanvasOp.Type>
  • Enum Constant Details

    • GRID

      @SerializedName("grid") public static final CanvasOp.Type GRID
    • TRANSLATE

      @SerializedName("translate") public static final CanvasOp.Type TRANSLATE
    • ROTATION

      @SerializedName("rotation") public static final CanvasOp.Type ROTATION
    • SCALE

      @SerializedName("scale") public static final CanvasOp.Type SCALE
    • ALPHA

      @SerializedName("alpha") public static final CanvasOp.Type ALPHA
    • CIRCLE

      @SerializedName("circle") public static final CanvasOp.Type CIRCLE
    • POLYGON

      @SerializedName("polygon") public static final CanvasOp.Type POLYGON
    • POLYLINE

      @SerializedName("polyline") public static final CanvasOp.Type POLYLINE
    • SPLINE

      @SerializedName("spline") public static final CanvasOp.Type SPLINE
    • STROKE

      @SerializedName("stroke") public static final CanvasOp.Type STROKE
    • FILL

      @SerializedName("fill") public static final CanvasOp.Type FILL
    • STROKE_WIDTH

      @SerializedName("strokeWidth") public static final CanvasOp.Type STROKE_WIDTH
    • TEXT

      @SerializedName("text") public static final CanvasOp.Type TEXT
    • IMAGE

      @SerializedName("image") public static final CanvasOp.Type IMAGE
  • Method Details

    • values

      public static CanvasOp.Type[] 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 CanvasOp.Type 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