public class

ClassBreak

extends Object
java.lang.Object
   ↳ com.esri.core.renderer.ClassBreak

Class Overview

The Class ClassBreak.

Summary

Public Constructors
ClassBreak()
Instantiates an empty ClassBreak object.
ClassBreak(JsonNode node)
Instantiates ClassBreak from a Json node object.
Public Methods
static ClassBreak fromJson(JsonParser parser)
Decodes objects from JSON representation.
double getClassMaxValue()
Gets the maximum value.
String getDescription()
Gets the description.
String getLabel()
Gets the label.
Symbol getSymbol()
Gets the symbol.
void setClassMaxValue(double classMaxValue)
Sets the maximum value.
void setDescription(String description)
Sets the description.
void setLabel(String label)
Sets the label.
void setSymbol(Symbol symbol)
Sets the symbol.
String toJson()
Converts into a JSON string.
[Expand]
Inherited Methods
From class java.lang.Object

Public Constructors

public ClassBreak ()

Instantiates an empty ClassBreak object.

public ClassBreak (JsonNode node)

Instantiates ClassBreak from a Json node object.

Parameters
node the node
Throws
Exception the exception

Public Methods

public static ClassBreak 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 the exception

public double getClassMaxValue ()

Gets the maximum value.

Returns
  • the maximum value

public String getDescription ()

Gets the description.

Returns
  • the description

public String getLabel ()

Gets the label.

Returns
  • the label string

public Symbol getSymbol ()

Gets the symbol.

Returns
  • the symbol used to display the value

public void setClassMaxValue (double classMaxValue)

Sets the maximum value.

Parameters
classMaxValue the maximum value to set

public void setDescription (String description)

Sets the description.

Parameters
description the description to set

public void setLabel (String label)

Sets the label.

Parameters
label the label string

public void setSymbol (Symbol symbol)

Sets the symbol.

Parameters
symbol the symbol used to display the value

public String toJson ()

Converts into a JSON string.

Returns
  • a JSON string
Throws
Exception the exception