Class Citation.CitedArtifact.PublicationForm
- java.lang.Object
-
- org.linuxforhealth.fhir.model.visitor.AbstractVisitable
-
- org.linuxforhealth.fhir.model.type.Element
-
- org.linuxforhealth.fhir.model.type.BackboneElement
-
- org.linuxforhealth.fhir.model.resource.Citation.CitedArtifact.PublicationForm
-
- All Implemented Interfaces:
Visitable
- Enclosing class:
- Citation.CitedArtifact
public static class Citation.CitedArtifact.PublicationForm extends BackboneElement
If multiple, used to represent alternative forms of the article that are not separate citations.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
Citation.CitedArtifact.PublicationForm.Builder
static class
Citation.CitedArtifact.PublicationForm.PeriodicRelease
The specific issue in which the cited article resides.static class
Citation.CitedArtifact.PublicationForm.PublishedIn
The collection the cited article or artifact is published in.
-
Field Summary
-
Fields inherited from class org.linuxforhealth.fhir.model.type.BackboneElement
modifierExtension
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description void
accept(java.lang.String elementName, int elementIndex, Visitor visitor)
Accept a Visitor and invoke the appropriate visit methods.static Citation.CitedArtifact.PublicationForm.Builder
builder()
boolean
equals(java.lang.Object obj)
String
getAccessionNumber()
Entry number or identifier for inclusion in a database.DateTime
getArticleDate()
The date the article was added to the database, or the date the article was released (which may differ from the journal issue publication date).Markdown
getCopyright()
Copyright notice for the full article or artifact.String
getFirstPage()
Used for isolated representation of first page.java.util.List<CodeableConcept>
getLanguage()
Language in which this form of the article is published.String
getLastPage()
Used for isolated representation of last page.DateTime
getLastRevisionDate()
The date the article was last revised or updated in the database.String
getPageCount()
Actual or approximate number of pages or screens.String
getPageString()
Used for full display of pagination.Citation.CitedArtifact.PublicationForm.PeriodicRelease
getPeriodicRelease()
The specific issue in which the cited article resides.Citation.CitedArtifact.PublicationForm.PublishedIn
getPublishedIn()
The collection the cited article or artifact is published in.boolean
hasChildren()
int
hashCode()
Citation.CitedArtifact.PublicationForm.Builder
toBuilder()
Create a new Builder from the contents of this Element-
Methods inherited from class org.linuxforhealth.fhir.model.type.BackboneElement
getModifierExtension
-
Methods inherited from class org.linuxforhealth.fhir.model.type.Element
as, getExtension, getId, hasValue, is
-
-
-
-
Method Detail
-
getPublishedIn
public Citation.CitedArtifact.PublicationForm.PublishedIn getPublishedIn()
The collection the cited article or artifact is published in.- Returns:
- An immutable object of type
Citation.CitedArtifact.PublicationForm.PublishedIn
that may be null.
-
getPeriodicRelease
public Citation.CitedArtifact.PublicationForm.PeriodicRelease getPeriodicRelease()
The specific issue in which the cited article resides.- Returns:
- An immutable object of type
Citation.CitedArtifact.PublicationForm.PeriodicRelease
that may be null.
-
getArticleDate
public DateTime getArticleDate()
The date the article was added to the database, or the date the article was released (which may differ from the journal issue publication date).- Returns:
- An immutable object of type
DateTime
that may be null.
-
getLastRevisionDate
public DateTime getLastRevisionDate()
The date the article was last revised or updated in the database.- Returns:
- An immutable object of type
DateTime
that may be null.
-
getLanguage
public java.util.List<CodeableConcept> getLanguage()
Language in which this form of the article is published.- Returns:
- An unmodifiable list containing immutable objects of type
CodeableConcept
that may be empty.
-
getAccessionNumber
public String getAccessionNumber()
Entry number or identifier for inclusion in a database.- Returns:
- An immutable object of type
String
that may be null.
-
getPageString
public String getPageString()
Used for full display of pagination.- Returns:
- An immutable object of type
String
that may be null.
-
getFirstPage
public String getFirstPage()
Used for isolated representation of first page.- Returns:
- An immutable object of type
String
that may be null.
-
getLastPage
public String getLastPage()
Used for isolated representation of last page.- Returns:
- An immutable object of type
String
that may be null.
-
getPageCount
public String getPageCount()
Actual or approximate number of pages or screens.- Returns:
- An immutable object of type
String
that may be null.
-
getCopyright
public Markdown getCopyright()
Copyright notice for the full article or artifact.- Returns:
- An immutable object of type
Markdown
that may be null.
-
hasChildren
public boolean hasChildren()
- Overrides:
hasChildren
in classBackboneElement
-
accept
public void accept(java.lang.String elementName, int elementIndex, Visitor visitor)
Description copied from interface:Visitable
Accept a Visitor and invoke the appropriate visit methods. A typical implementation would look like this:if (visitor.preVisit(this)) { visitor.visitStart(elementName, elementIndex, this); if (visitor.visit(elementName, elementIndex, this)) { // visit children } visitor.visitEnd(elementName, elementIndex, this); visitor.postVisit(this); }
- Specified by:
accept
in interfaceVisitable
- Specified by:
accept
in classAbstractVisitable
- Parameters:
elementName
- the name of the element in the context of this visitelementIndex
- the index of the element in a list or -1 if it is not contained within a Listvisitor
- the visitor to use
-
equals
public boolean equals(java.lang.Object obj)
- Overrides:
equals
in classjava.lang.Object
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classjava.lang.Object
-
toBuilder
public Citation.CitedArtifact.PublicationForm.Builder toBuilder()
Description copied from class:Element
Create a new Builder from the contents of this Element- Specified by:
toBuilder
in classBackboneElement
-
builder
public static Citation.CitedArtifact.PublicationForm.Builder builder()
-
-