public class

RangeDomain

extends Domain
java.lang.Object
   ↳ com.esri.core.map.Domain
     ↳ com.esri.core.map.RangeDomain

Class Overview

The RangeDomain class represents the 'Range Domain' details in the Feature Layer of the Feature Service.

Summary

[Expand]
Inherited Fields
From class com.esri.core.map.Domain
Public Constructors
RangeDomain(String domainName, double minValue, double maxValue)
Instantiates a RangeDomain.
RangeDomain()
Instantiates an empty RangeDomain.
Public Methods
static RangeDomain fromJson(JsonParser parser)
Decodes objects from JSON representation.
double getMaxValue()
Gets the maxValue of the RangeDomain.
double getMinValue()
Gets the minValue of the RangeDomain.
String toString()
[Expand]
Inherited Methods
From class com.esri.core.map.Domain
From class java.lang.Object

Public Constructors

public RangeDomain (String domainName, double minValue, double maxValue)

Instantiates a RangeDomain.

Parameters
domainName the name of the domain.
minValue the minimum value of the domain.
maxValue the maximum value of the domain.

public RangeDomain ()

Instantiates an empty RangeDomain.

Public Methods

public static RangeDomain fromJson (JsonParser parser)

Decodes objects from JSON representation.

Parameters
parser the Jackson parser holding the JSON data.
Returns
  • the decoded object from JSON representation.
Throws
Exception

public double getMaxValue ()

Gets the maxValue of the RangeDomain.

Returns
  • Returns the maxValue.

public double getMinValue ()

Gets the minValue of the RangeDomain.

Returns
  • Returns the minValue.

public String toString ()