Package gov.nasa.gsfc.sscweb.schema
Class GraphLabelOptions
java.lang.Object
gov.nasa.gsfc.sscweb.schema.GraphLabelOptions
Custom label options for an SSC graph request.
<p>Java class for GraphLabelOptions complex type</p>.
<p>The following schema fragment specifies the expected content contained within this class.</p>
<pre>{@code
<complexType name="GraphLabelOptions">
<complexContent>
<restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
<sequence>
<element name="DayOfYearLabelFrequency" type="{http://www.w3.org/2001/XMLSchema}int"/>
<element name="MonthDayOfMonthLabel" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
<element name="HourLabelFrequency" type="{http://www.w3.org/2001/XMLSchema}int"/>
<element name="HourTickMarkFrequency" type="{http://www.w3.org/2001/XMLSchema}int"/>
<element name="MinuteLabelFrequency" type="{http://www.w3.org/2001/XMLSchema}int"/>
<element name="MinuteTickMarkFrequency" type="{http://www.w3.org/2001/XMLSchema}int"/>
</sequence>
</restriction>
</complexContent>
</complexType>
}</pre>
-
Field Summary
FieldsModifier and TypeFieldDescriptionprotected intSpecifies frequency of day-of-year labels.protected intSpecifies frequency of hour labels.protected intSpecifies frequency of hour tick labels.protected intSpecifies frequency of minute labels.protected intSpecifies frequency of minute tick labels.protected booleanSpecifies format of day-of-year labels. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionintSpecifies frequency of day-of-year labels.intSpecifies frequency of hour labels.intSpecifies frequency of hour tick labels.intSpecifies frequency of minute labels.intSpecifies frequency of minute tick labels.booleanSpecifies format of day-of-year labels.voidsetDayOfYearLabelFrequency(int value) Sets the value of the dayOfYearLabelFrequency property.voidsetHourLabelFrequency(int value) Sets the value of the hourLabelFrequency property.voidsetHourTickMarkFrequency(int value) Sets the value of the hourTickMarkFrequency property.voidsetMinuteLabelFrequency(int value) Sets the value of the minuteLabelFrequency property.voidsetMinuteTickMarkFrequency(int value) Sets the value of the minuteTickMarkFrequency property.voidsetMonthDayOfMonthLabel(boolean value) Sets the value of the monthDayOfMonthLabel property.
-
Field Details
-
dayOfYearLabelFrequency
protected int dayOfYearLabelFrequencySpecifies frequency of day-of-year labels. -
monthDayOfMonthLabel
protected boolean monthDayOfMonthLabelSpecifies format of day-of-year labels. A false value specifies that a day-of-year value should label day-of-year tick marks. A true value indicates that a month/day-of-month value is to label day-of-year tick marks. -
hourLabelFrequency
protected int hourLabelFrequencySpecifies frequency of hour labels. -
hourTickMarkFrequency
protected int hourTickMarkFrequencySpecifies frequency of hour tick labels. -
minuteLabelFrequency
protected int minuteLabelFrequencySpecifies frequency of minute labels. -
minuteTickMarkFrequency
protected int minuteTickMarkFrequencySpecifies frequency of minute tick labels.
-
-
Constructor Details
-
GraphLabelOptions
public GraphLabelOptions()
-
-
Method Details
-
getDayOfYearLabelFrequency
public int getDayOfYearLabelFrequency()Specifies frequency of day-of-year labels. -
setDayOfYearLabelFrequency
public void setDayOfYearLabelFrequency(int value) Sets the value of the dayOfYearLabelFrequency property. -
isMonthDayOfMonthLabel
public boolean isMonthDayOfMonthLabel()Specifies format of day-of-year labels. A false value specifies that a day-of-year value should label day-of-year tick marks. A true value indicates that a month/day-of-month value is to label day-of-year tick marks. -
setMonthDayOfMonthLabel
public void setMonthDayOfMonthLabel(boolean value) Sets the value of the monthDayOfMonthLabel property. -
getHourLabelFrequency
public int getHourLabelFrequency()Specifies frequency of hour labels. -
setHourLabelFrequency
public void setHourLabelFrequency(int value) Sets the value of the hourLabelFrequency property. -
getHourTickMarkFrequency
public int getHourTickMarkFrequency()Specifies frequency of hour tick labels. -
setHourTickMarkFrequency
public void setHourTickMarkFrequency(int value) Sets the value of the hourTickMarkFrequency property. -
getMinuteLabelFrequency
public int getMinuteLabelFrequency()Specifies frequency of minute labels. -
setMinuteLabelFrequency
public void setMinuteLabelFrequency(int value) Sets the value of the minuteLabelFrequency property. -
getMinuteTickMarkFrequency
public int getMinuteTickMarkFrequency()Specifies frequency of minute tick labels. -
setMinuteTickMarkFrequency
public void setMinuteTickMarkFrequency(int value) Sets the value of the minuteTickMarkFrequency property.
-