summaryrefslogblamecommitdiffstats
path: root/src/main/java/org/uic/barcode/ticket/api/spec/IStationCodeTable.java
blob: 9e27fd0bfaeef4a231f6370294d506d3715dadd8 (plain) (tree)
1
                                         























                                                                                        
package org.uic.barcode.ticket.api.spec;

	public enum IStationCodeTable {
	
		stationUIC("stationUIC"),
		stationUICReservation("stationUICReservation"),
		stationERA("stationERA"),
		localCarrierStationCodeTable("localCarrierStationCodeTable"),
		proprietaryIssuerStationCodeTable("proprietaryIssuerStationCodeTable");
		
		public String text;

		IStationCodeTable(String text) {
			this.text = text;
		}
		
		public String toString(){
			return text;
		}		
		
		
 }