Class SummaryType
Java class for SummaryType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="SummaryType">
<complexContent>
<restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
<sequence>
<element name="tzid" type="{urn:ietf:params:xml:ns:timezone-service}TzidType"/>
<element name="last-modified" type="{urn:ietf:params:xml:ns:timezone-service}LastmodifiedType"/>
<element name="inactive" type="{urn:ietf:params:xml:ns:timezone-service}InactiveType" minOccurs="0"/>
<element name="local-name" type="{urn:ietf:params:xml:ns:timezone-service}LocalNameType" maxOccurs="unbounded" minOccurs="0"/>
<element name="alias" type="{urn:ietf:params:xml:ns:timezone-service}AliasType" maxOccurs="unbounded" minOccurs="0"/>
</sequence>
</restriction>
</complexContent>
</complexType>
-
Field Summary
FieldsModifier and TypeFieldDescriptionprotected InactiveTypeprotected XMLGregorianCalendarprotected List<LocalNameType> protected String -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptiongetAlias()Gets the value of the alias property.Gets the value of the inactive property.Gets the value of the lastModified property.Gets the value of the localName property.getTzid()Gets the value of the tzid property.voidsetInactive(InactiveType value) Sets the value of the inactive property.voidSets the value of the lastModified property.voidSets the value of the tzid property.
-
Field Details
-
tzid
-
lastModified
-
inactive
-
localName
-
alias
-
-
Constructor Details
-
SummaryType
public SummaryType()
-
-
Method Details
-
getTzid
Gets the value of the tzid property.- Returns:
- possible object is
String
-
setTzid
Sets the value of the tzid property.- Parameters:
value- allowed object isString
-
getLastModified
Gets the value of the lastModified property.- Returns:
- possible object is
XMLGregorianCalendar
-
setLastModified
Sets the value of the lastModified property.- Parameters:
value- allowed object isXMLGregorianCalendar
-
getInactive
Gets the value of the inactive property.- Returns:
- possible object is
InactiveType
-
setInactive
Sets the value of the inactive property.- Parameters:
value- allowed object isInactiveType
-
getLocalName
Gets the value of the localName property.This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the Jakarta XML Binding object. This is why there is not a
setmethod for the localName property.For example, to add a new item, do as follows:
getLocalName().add(newItem);Objects of the following type(s) are allowed in the list
LocalNameType -
getAlias
Gets the value of the alias property.This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the Jakarta XML Binding object. This is why there is not a
setmethod for the alias property.For example, to add a new item, do as follows:
getAlias().add(newItem);Objects of the following type(s) are allowed in the list
AliasType
-