Class ExternalId
- java.lang.Object
-
- se.michaelthelin.spotify.model_objects.AbstractModelObject
-
- se.michaelthelin.spotify.model_objects.specification.ExternalId
-
- All Implemented Interfaces:
Serializable,IModelObject
public class ExternalId extends AbstractModelObject
Retrieve information about External ID objects by building instances from this class.- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classExternalId.BuilderBuilder class for buildingExternalIdinstances.static classExternalId.JsonUtilJsonUtil class for buildingExternalIdinstances.-
Nested classes/interfaces inherited from interface se.michaelthelin.spotify.model_objects.IModelObject
IModelObject.IJsonUtil<T>
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ExternalId.Builderbuilder()Create a builder for building an instance of a model object.Map<String,String>getExternalIds()Get the external IDs from this External ID object.StringtoString()Returns a String representation of this model object in the style:
-
-
-
Method Detail
-
getExternalIds
public Map<String,String> getExternalIds()
Get the external IDs from this External ID object.
External ID examples:
"isrc" - International Standard Recording Code
"ean" - International Article Number
"upc" - Universal Product Code- Returns:
- A
Mapof external IDs, containing external identifiers for the object.
-
toString
public String toString()
Description copied from class:AbstractModelObjectReturns a String representation of this model object in the style:ModelObject(attr1=value1, attr2=value2, ...)- Specified by:
toStringin classAbstractModelObject
-
builder
public ExternalId.Builder builder()
Description copied from interface:IModelObjectCreate a builder for building an instance of a model object.
The type of the builder and its methods depend on its corresponding implementation.- Returns:
- A builder object.
-
-