Package com.esri.arcgisruntime.data
Class ShapefileInfo
- java.lang.Object
-
- com.esri.arcgisruntime.data.ShapefileInfo
-
public final class ShapefileInfo extends Object
Contains metadata information about a shapefile. If a shapefile has an associated xml file, the shapefile info will be created and populated with metadata from the file. If a xml file does not exist, this object will be null.- Since:
- 100.2.0
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getCopyrightText()
Gets the copyright text of the shapefile.String
getCredits()
Gets the credits of the shapefile.String
getDescription()
Gets the description of the shapefile.String
getSummary()
Gets the summary of the shapefile.List<String>
getTags()
Gets the tags of the shapefile.byte[]
getThumbnail()
Returns a byte array containing the thumbnail data.
-
-
-
Method Detail
-
getCopyrightText
public String getCopyrightText()
Gets the copyright text of the shapefile.- Returns:
- the copyright text of the shapefile
- Since:
- 100.2.0
-
getCredits
public String getCredits()
Gets the credits of the shapefile.- Returns:
- the credits of the shapefile.
- Since:
- 100.2.0
-
getDescription
public String getDescription()
Gets the description of the shapefile.- Returns:
- the description of the shapefile.
- Since:
- 100.2.0
-
getSummary
public String getSummary()
Gets the summary of the shapefile.- Returns:
- the summary of the shapefile.
- Since:
- 100.2.0
-
getTags
public List<String> getTags()
Gets the tags of the shapefile.- Returns:
- an unmodifiable list of the tags of the shapefile
- Since:
- 100.2.0
-
getThumbnail
public byte[] getThumbnail()
Returns a byte array containing the thumbnail data. Will return null if no thumbnail is available.- Returns:
- the thumbnail bytes
- Since:
- 100.2.0
-
-