com.esri.arcgisws
Class CircularArc

java.lang.Object
  extended by com.esri.arcgisws.Geometry
      extended by com.esri.arcgisws.Curve
          extended by com.esri.arcgisws.Segment
              extended by com.esri.arcgisws.CircularArc
All Implemented Interfaces:
Serializable

public class CircularArc
extends Segment
implements Serializable

Java class for CircularArc complex type.

The following schema fragment specifies the expected content contained within this class.

 <complexType name="CircularArc">
   <complexContent>
     <extension base="{http://www.esri.com/schemas/ArcGIS/10.0}Segment">
       <sequence>
         <element name="CenterPoint" type="{http://www.esri.com/schemas/ArcGIS/10.0}Point"/>
         <element name="FromAngle" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
         <element name="ToAngle" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
         <element name="IsCounterClockwise" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
         <element name="IsMinor" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
         <element name="IsLine" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
       </sequence>
     </extension>
   </complexContent>
 </complexType>
 

See Also:
Serialized Form

Constructor Summary
CircularArc()
          CircularArc default constructor.
CircularArc(Point fromPoint, Point toPoint, Point centerPoint, Double fromAngle, Double toAngle, boolean isCounterClockwise, boolean isMinor, boolean isLine)
          Deprecated. 
 
Method Summary
 Point getCenterPoint()
          Gets the value of the centerPoint property.
 Double getFromAngle()
          Gets the value of the fromAngle property.
 Double getToAngle()
          Gets the value of the toAngle property.
 boolean isIsCounterClockwise()
          Gets the value of the isCounterClockwise property.
 boolean isIsLine()
          Gets the value of the isLine property.
 boolean isIsMinor()
          Gets the value of the isMinor property.
 void setCenterPoint(Point value)
          Sets the value of the centerPoint property.
 void setFromAngle(Double value)
          Sets the value of the fromAngle property.
 void setIsCounterClockwise(boolean value)
          Sets the value of the isCounterClockwise property.
 void setIsLine(boolean value)
          Sets the value of the isLine property.
 void setIsMinor(boolean value)
          Sets the value of the isMinor property.
 void setToAngle(Double value)
          Sets the value of the toAngle property.
 
Methods inherited from class com.esri.arcgisws.Segment
getFromPoint, getToPoint, setFromPoint, setToPoint
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

CircularArc

@Deprecated
public CircularArc(Point fromPoint,
                              Point toPoint,
                              Point centerPoint,
                              Double fromAngle,
                              Double toAngle,
                              boolean isCounterClockwise,
                              boolean isMinor,
                              boolean isLine)
Deprecated. 

CircularArc constructor.


CircularArc

public CircularArc()
CircularArc default constructor.

Method Detail

getCenterPoint

public Point getCenterPoint()
Gets the value of the centerPoint property.

Returns:
possible object is Point

setCenterPoint

public void setCenterPoint(Point value)
Sets the value of the centerPoint property.

Parameters:
value - allowed object is Point

getFromAngle

public Double getFromAngle()
Gets the value of the fromAngle property.

Returns:
possible object is Double

setFromAngle

public void setFromAngle(Double value)
Sets the value of the fromAngle property.

Parameters:
value - allowed object is Double

getToAngle

public Double getToAngle()
Gets the value of the toAngle property.

Returns:
possible object is Double

setToAngle

public void setToAngle(Double value)
Sets the value of the toAngle property.

Parameters:
value - allowed object is Double

isIsCounterClockwise

public boolean isIsCounterClockwise()
Gets the value of the isCounterClockwise property.


setIsCounterClockwise

public void setIsCounterClockwise(boolean value)
Sets the value of the isCounterClockwise property.


isIsMinor

public boolean isIsMinor()
Gets the value of the isMinor property.


setIsMinor

public void setIsMinor(boolean value)
Sets the value of the isMinor property.


isIsLine

public boolean isIsLine()
Gets the value of the isLine property.


setIsLine

public void setIsLine(boolean value)
Sets the value of the isLine property.