All Downloads are FREE. Search and download functionalities are using the official Maven repository.

javastrava.model.reference.StravaAthleteType Maven / Gradle / Ivy

The newest version!
package javastrava.model.reference;

import javastrava.config.Messages;
import javastrava.config.StravaConfig;
import javastrava.json.impl.serializer.AthleteTypeSerializer;

/**
 * 

* athlete’s default sport type: 0=cyclist, 1=runner *

* * @author Dan Shannon * */ public enum StravaAthleteType implements StravaReferenceType { /** * Cyclist */ CYCLIST(StravaConfig.integer("StravaAthleteType.cyclist"),Messages.string("StravaAthleteType.cyclist.description")), //$NON-NLS-1$ //$NON-NLS-2$ /** * Runner */ RUNNER(StravaConfig.integer("StravaAthleteType.runner"),Messages.string("StravaAthleteType.runner.description")), //$NON-NLS-1$ //$NON-NLS-2$ /** * Unknown */ UNKNOWN(StravaConfig.integer("Common.unknown.integer"), Messages.string("Common.unknown.description")); //$NON-NLS-1$ //$NON-NLS-2$ /** * Used by JSON deserialisation * @param id The integer representation of the {@link StravaAthleteType} as returned by the Strava API * @return The matching {@link StravaAthleteType}, or {@link StravaAthleteType#UNKNOWN} if there is no match * @see AthleteTypeSerializer#deserialize(com.google.gson.JsonElement, java.lang.reflect.Type, com.google.gson.JsonDeserializationContext) */ public static StravaAthleteType create(final Integer id) { final StravaAthleteType[] categories = StravaAthleteType.values(); for (final StravaAthleteType category : categories) { if (category.getId().equals(id)) { return category; } } return StravaAthleteType.UNKNOWN; } /** * Identifier */ private Integer id; /** * Description */ private String description; /** * Private constructor used by declarations * @param id Identifier - also used when serialising/deserialising to JSON * @param description Description */ private StravaAthleteType(final Integer id, final String description) { this.id = id; this.description = description; } /** * @return the description */ @Override public String getDescription() { return this.description; } /** * @return the id */ @Override public Integer getId() { return this.id; } /** * Used by JSON serialisation * @return The integer value to be used with the Strava API * @see AthleteTypeSerializer#serialize(StravaAthleteType, java.lang.reflect.Type, com.google.gson.JsonSerializationContext) */ @Override public Integer getValue() { return this.id; } /** * @see java.lang.Enum#toString() */ @Override public String toString() { return this.id.toString(); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy