| Package | com.esri.aws.services |
| Class | public class FieldDesc |
| Property | Defined by | ||
|---|---|---|---|
| length : int
The actual length of the field.
| FieldDesc | ||
| name : String
The name of the field.
| FieldDesc | ||
| precision : int
The number of digits after the decimal place.
| FieldDesc | ||
| shortDesc : String
The short description of the field.
| FieldDesc | ||
| type : String
The data type of the field.
| FieldDesc | ||
| Method | Defined by | ||
|---|---|---|---|
|
toString():String
Returns the variable as "name : shortDesc".
| FieldDesc | ||
| length | property |
public var length:intThe actual length of the field. For example, the value "14.7" has a length of "4". The value of the length varies based on the values of type and precision.
| name | property |
public var name:StringThe name of the field.
| precision | property |
public var precision:intThe number of digits after the decimal place. It is used with type "float". The values of type "integer" and "string" is "0".
| shortDesc | property |
public var shortDesc:StringThe short description of the field. The short description corresponds to the alias name in a custom spatial query service.
| type | property |
public var type:StringThe data type of the field. Possible values are "integer", "float", or "string". Report Web Service (but not Spatial Query or Utility) can also return "count" (integer), "pct" (integer with "%"), "ratio" (double rounded to one decimal place), or "dollar" (double usually rounded to closest whole number).
| toString | () | method |
public function toString():StringReturns the variable as "name : shortDesc".
ReturnsString |