Class ServiceDocumentInfo
- java.lang.Object
-
- com.esri.arcgisruntime.arcgisservices.ServiceDocumentInfo
-
public final class ServiceDocumentInfo extends java.lang.Object
Provides various information about the map service such as title, author, keywords and comments. It also includes the text anti-aliasing mode.- Since:
- 100.0.0
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description AntiAliasingMode
getAntiAliasingMode()
Gets the anti aliasing mode of the map service.java.lang.String
getAuthor()
Gets the author of the map service.java.lang.String
getCategory()
Gets the category of the map service.java.lang.String
getComments()
Gets the comments of the map service.java.util.List<java.lang.String>
getKeywords()
Gets the keywords of the map service.java.lang.String
getSubject()
Gets the subject of the map service.TextAntiAliasingMode
getTextAntiAliasingMode()
Gets the text anti aliasing mode of the map service.java.lang.String
getTitle()
Gets the title of the map service.
-
-
-
Method Detail
-
getAntiAliasingMode
public AntiAliasingMode getAntiAliasingMode()
Gets the anti aliasing mode of the map service.- Returns:
- the anti aliasing mode
- Since:
- 100.0.0
-
getAuthor
public java.lang.String getAuthor()
Gets the author of the map service.- Returns:
- the author
- Since:
- 100.0.0
-
getCategory
public java.lang.String getCategory()
Gets the category of the map service.- Returns:
- the category
- Since:
- 100.0.0
-
getComments
public java.lang.String getComments()
Gets the comments of the map service.- Returns:
- the comments
- Since:
- 100.0.0
-
getKeywords
public java.util.List<java.lang.String> getKeywords()
Gets the keywords of the map service.- Returns:
- an unmodifiable list of keywords
- Since:
- 100.0.0
-
getSubject
public java.lang.String getSubject()
Gets the subject of the map service.- Returns:
- the subject
- Since:
- 100.0.0
-
getTextAntiAliasingMode
public TextAntiAliasingMode getTextAntiAliasingMode()
Gets the text anti aliasing mode of the map service.- Returns:
- the text anti aliasing mode
- Since:
- 100.0.0
-
getTitle
public java.lang.String getTitle()
Gets the title of the map service.- Returns:
- the title
- Since:
- 100.0.0
-
-