Package fr.alba0404.astuce.api.enums
Enum Station
java.lang.Object
java.lang.Enum<Station>
fr.alba0404.astuce.api.enums.Station
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<Station>
,java.lang.constant.Constable
public enum Station extends java.lang.Enum<Station>
Stations of the Astuce transport network;
- Version:
- 2.0
- Author:
- Alba0404
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
java.lang.Enum.EnumDesc<E extends java.lang.Enum<E>>
-
Enum Constant Summary
-
Method Summary
Modifier and Type Method Description int
getId()
Getter for the id of the station.java.util.List<Line>
getLines()
Getter for Lines which go to this station.java.lang.String
getName()
Getter for the name of the station.int
getPhysicalIds(int sens, Line line)
Get the physical id (the platform) of the station.static Station
getStationById(int id)
Get the station using its id.java.lang.String
toString()
static Station
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static Station[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods inherited from class java.lang.Enum
compareTo, describeConstable, equals, getDeclaringClass, hashCode, name, ordinal, valueOf
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
-
Enum Constant Details
-
ABATTOIRS
-
ABBAYE_DE_ST_MARTIN_DE_BOSCHERVILLE
-
ABBESSES
-
ACHAVANNE
-
ADENAUER
-
AEROPORT
-
ALLEE_DE_L_OREE_DU_BOIS
-
ALLEE_DES_DEUX_FERMES
-
ALLEE_DE_PEUPLIERS
-
GARE_RUE_VERTE
-
BOULINGRIN
-
BEAUVOISINE
-
GARE_RUE_VERTE_METRO
-
PALAIS_DE_JUSTICE
-
THEATRE_DES_ARTS
-
JOFFRE_MUTUALITE
-
SAINT_SEVER
-
EUROPE
-
HONORE_DE_BALZAC
-
VOLTAIRE
-
GARIBALDI
-
HDV_SOTTEVILLE
-
_14_JUILLET
-
JEAN_ZAY
-
TOIT_FAMILIAL
-
CHAMP_DE_COURSE
-
ERNEST_RENAN
-
LE_PARC
-
MARYSE_BASTIE
-
TECHNOPOLE
-
AVENUE_DE_CAEN
-
JEAN_JAURES
-
FRANCOIS_TRUFFAUT
-
PLACE_DU_8_MAI
-
SAINT_JULIEN
-
CHARLES_DE_GAULLE
-
PROVINCES
-
JF_KENNEDY
-
LEON_BLUM
-
PAUL_CEZANNE
-
GEORGES_BRAQUE
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
getName
public final java.lang.String getName()Getter for the name of the station.- Returns:
- The name of the station, used by the system.
-
getId
public final int getId()Getter for the id of the station.- Returns:
- The id of the station.
-
getPhysicalIds
Get the physical id (the platform) of the station.- Parameters:
sens
- The direction (1/2).line
- The concerned line.- Returns:
- The physical id.
-
getLines
Getter for Lines which go to this station.- Returns:
- The list of lines available at this station.
-
getStationById
Get the station using its id.- Parameters:
id
- The id of the station you want.- Returns:
- The station with this id.
-
toString
public java.lang.String toString()- Overrides:
toString
in classjava.lang.Enum<Station>
-