Interface SVGPathSeg

All Known Subinterfaces:
SVGPathSegArcAbs, SVGPathSegArcRel, SVGPathSegClosePath, SVGPathSegCurvetoCubicAbs, SVGPathSegCurvetoCubicRel, SVGPathSegCurvetoCubicSmoothAbs, SVGPathSegCurvetoCubicSmoothRel, SVGPathSegCurvetoQuadraticAbs, SVGPathSegCurvetoQuadraticRel, SVGPathSegCurvetoQuadraticSmoothAbs, SVGPathSegCurvetoQuadraticSmoothRel, SVGPathSegLinetoAbs, SVGPathSegLinetoHorizontalAbs, SVGPathSegLinetoHorizontalRel, SVGPathSegLinetoRel, SVGPathSegLinetoVerticalAbs, SVGPathSegLinetoVerticalRel, SVGPathSegMovetoAbs, SVGPathSegMovetoRel
All Known Implementing Classes:
AbstractSVGNormPathSegList.SVGPathSegGenericItem, AbstractSVGPathSegList.SVGPathSegArcItem, AbstractSVGPathSegList.SVGPathSegCurvetoCubicItem, AbstractSVGPathSegList.SVGPathSegCurvetoCubicSmoothItem, AbstractSVGPathSegList.SVGPathSegCurvetoQuadraticItem, AbstractSVGPathSegList.SVGPathSegCurvetoQuadraticSmoothItem, AbstractSVGPathSegList.SVGPathSegLinetoHorizontalItem, AbstractSVGPathSegList.SVGPathSegLinetoVerticalItem, AbstractSVGPathSegList.SVGPathSegMovetoLinetoItem, SVGPathSegItem

public interface SVGPathSeg
Declares the different Path Segment Types corresponding to a single command within a path data specification.
  • Field Details

    • PATHSEG_UNKNOWN

      static final short PATHSEG_UNKNOWN
      The unit type is not one of predefined types. It is invalid to attempt to define a new value of this type or to attempt to switch an existing value to this type.
      See Also:
    • PATHSEG_CLOSEPATH

      static final short PATHSEG_CLOSEPATH
      closepath (z) path data command.
      See Also:
    • PATHSEG_MOVETO_ABS

      static final short PATHSEG_MOVETO_ABS
      absolute moveto (M) path data command.
      See Also:
    • PATHSEG_MOVETO_REL

      static final short PATHSEG_MOVETO_REL
      relative moveto (m) path data command.
      See Also:
    • PATHSEG_LINETO_ABS

      static final short PATHSEG_LINETO_ABS
      absolute lineto (L) path data command.
      See Also:
    • PATHSEG_LINETO_REL

      static final short PATHSEG_LINETO_REL
      relative lineto (l) path data command.
      See Also:
    • PATHSEG_CURVETO_CUBIC_ABS

      static final short PATHSEG_CURVETO_CUBIC_ABS
      absolute cubic Bézier curveto (C) path data command.
      See Also:
    • PATHSEG_CURVETO_CUBIC_REL

      static final short PATHSEG_CURVETO_CUBIC_REL
      relative cubic Bézier curveto (c) path data command.
      See Also:
    • PATHSEG_CURVETO_QUADRATIC_ABS

      static final short PATHSEG_CURVETO_QUADRATIC_ABS
      absolute quadratic Bézier curveto (Q) path data command.
      See Also:
    • PATHSEG_CURVETO_QUADRATIC_REL

      static final short PATHSEG_CURVETO_QUADRATIC_REL
      relative quadratic Bézier curveto (q) path data command.
      See Also:
    • PATHSEG_ARC_ABS

      static final short PATHSEG_ARC_ABS
      absolute arcto (A) path data command.
      See Also:
    • PATHSEG_ARC_REL

      static final short PATHSEG_ARC_REL
      relative arcto (a) path data command.
      See Also:
    • PATHSEG_LINETO_HORIZONTAL_ABS

      static final short PATHSEG_LINETO_HORIZONTAL_ABS
      absolute horizontal lineto (H) path data command.
      See Also:
    • PATHSEG_LINETO_HORIZONTAL_REL

      static final short PATHSEG_LINETO_HORIZONTAL_REL
      relative horizontal lineto (h) path data command.
      See Also:
    • PATHSEG_LINETO_VERTICAL_ABS

      static final short PATHSEG_LINETO_VERTICAL_ABS
      absolute vertical lineto (V) path data command.
      See Also:
    • PATHSEG_LINETO_VERTICAL_REL

      static final short PATHSEG_LINETO_VERTICAL_REL
      relative vertical lineto (v) path data command.
      See Also:
    • PATHSEG_CURVETO_CUBIC_SMOOTH_ABS

      static final short PATHSEG_CURVETO_CUBIC_SMOOTH_ABS
      absolute smooth cubic curveto (S) path data command.
      See Also:
    • PATHSEG_CURVETO_CUBIC_SMOOTH_REL

      static final short PATHSEG_CURVETO_CUBIC_SMOOTH_REL
      relative smooth cubic curveto (s) path data command.
      See Also:
    • PATHSEG_CURVETO_QUADRATIC_SMOOTH_ABS

      static final short PATHSEG_CURVETO_QUADRATIC_SMOOTH_ABS
      absolute smooth quadratic curveto (T) path data command.
      See Also:
    • PATHSEG_CURVETO_QUADRATIC_SMOOTH_REL

      static final short PATHSEG_CURVETO_QUADRATIC_SMOOTH_REL
      relative smooth quadratic curveto (t) path data command.
      See Also:
  • Method Details

    • getPathSegType

      short getPathSegType()
      Gets the type of the path segment as specified by one of the constants declared on this interface.
      Returns:
      the type of the path segment.
    • getPathSegTypeAsLetter

      String getPathSegTypeAsLetter()
      Gets the type of the path segment, specified by the corresponding one-character command name.
      Returns:
      the type of the path segment.