package com.fractalite.hermes.teldar.parsers; public enum Facility { SVGEKKO_1("acces internet"), SVGEKKO_2("Parking"), SVGEKKO_3("Court de tennis"), SVGEKKO_4("Etablissement adapté pour handicapés"), SVGEKKO_5("Business center"), SVGEKKO_6("Animaux domestiques admis"), SVGEKKO_7("Piscine"), SVGEKKO_8("Spa / Estétique"), SVGEKKO_9("Salles de réunion / conférence"), SVGEKKO_10("climatisation"), SVGEKKO_11("Golf"), SVGEKKO_12("Restaurant"), SVGEKKO_13("Baby sitting / garde d'enfants"), SVGEKKO_14("Salle de sport / gym"), SVGEKKO_15("Casino"), SVGEKKO_16("Club enfants"), SVGEKKO_17("Accès à la plage"), SVGEKKO_18("canapé clic-clac"), SVGEKKO_19("machine à laver"), SVGEKKO_20("réfrigérateur"), SVGEKKO_21("sèche-linge"), SVGEKKO_22("Séjour /salon"), SVGEKKO_23("fer à repasser"), SVGEKKO_24("changement du linge"), SVGEKKO_25("terrasse/balcon"), SVGEKKO_26("salle à manger"), SVGEKKO_27("menage hebdomadaire"), SVGEKKO_28("kitchenette"), SVGEKKO_29("cuisine"), SVGEKKO_31("équipement de la cuisine"), SVGEKKO_32("Four /micro-ondes"), SVGEKKO_33("télévision"), SVGEKKO_34("duplex"), SVGEKKO_35("barbecue"), SVGEKKO_36("chaise-longue"), SVGEKKO_37("lave-vaisselle"), SVGEKKO_38("vaisselle/couverts"), SVGEKKO_39("cuisinière"), SVGEKKO_40("congélateur"), SVGEKKO_42("draps fournis"), SVGEKKO_43("loft"), SVGEKKO_53("chaine TV payante"), SVGEKKO_54("presse"), SVGEKKO_55("salon de coiffure"), SVGEKKO_56("salle de jeux"), SVGEKKO_58("Room Service"), SVGEKKO_59("consigne"), SVGEKKO_61("blanchisserie"), SVGEKKO_62("mini-bar"), SVGEKKO_63("presse à pantalons"), SVGEKKO_65("discothèque"), SVGEKKO_66("jardin<"), SVGEKKO_67("coffre-fort dans la chambre"), SVGEKKO_68("service transfert"), SVGEKKO_70("Valet Parking"), SVGEKKO_71("bar"), SVGEKKO_73("navette gratuite vers la ville"), SVGEKKO_74("Dvd / Vidéo"), SVGEKKO_76("location de vélos"), SVGEKKO_77("equitation"), SVGEKKO_80("non-fumeur"), SVGEKKO_81("plongée"), SVGEKKO_82("voile"), SVGEKKO_83("jet ski"), SVGEKKO_85("sports nautiques à proximité"), SVGEKKO_86("Animation"), SVGEKKO_87("Ascenseur"), SVGEKKO_88("Boutique"), SVGEKKO_89("Change de devises"), SVGEKKO_90("Location de voiture"), SVGEKKO_91("Service fax"), SVGEKKO_92("Service réveil"), SVGEKKO_93("Service taxis"), SVGEKKO_97("Aire de jeux pour enfants"), SVGEKKO_98("Bagagiste"), SVGEKKO_99("Service de restauration"), SVGEKKO_100("Bibliothèque"), SVGEKKO_101("Enfants non admis"), SVGEKKO_102("sèche-cheveux"), SVGEKKO_103("distributeur automatique"), SVGEKKO_104("Accueil 24h/24"), SVGEKKO_105("cafetière/ bouilloire en chambre"), SVGEKKO_106("jacuzzi / bain à remous"), SVGEKKO_107("coffre"), SVGEKKO_108("Cheminée"), SVGEKKO_109("club ados"), SVGEKKO_110("club bébés"), SVGEKKO_111("chaise pour enfants"), SVGEKKO_112("douche"), SVGEKKO_113("télévision écran plat"), SVGEKKO_114("berceau disponible"), SVGEKKO_115("concierge"), SVGEKKO_116("Chambre fumeurs"), SVGEKKO_117("photocopieur"), SVGEKKO_118("lecteur cd"), SVGEKKO_119("Gardien 24h/24 à l’entrée de la résidence"), SVGEKKO_120("Kiosque à journaux/cadeaux"), SVGEKKO_121("Hôtel non fumeur"), SVGEKKO_122("navette gratuite pour l'aeroport"), SVGEKKO_123("Imprimante"), SVGEKKO_124("Duty free shop"), SVGEKKO_125("Location de téléphone portable"), SVGEKKO_126("Location d'ordinateur"), SVGEKKO_127("Service de blanchisserie"), SVGEKKO_128("Parking payant"), SVGEKKO_129("centre de convention"), SVGEKKO_130("parasols"), SVGEKKO_131("Parking gratuit"), SVGEKKO_132("chambres insonorisées"), SVGEKKO_133("Télévision par satellite avec chaînes françaises"), SVGEKKO_134("WIFI gratuit"), SVGEKKO_135("baignoire"), SVGEKKO_181("park"); /** * @uml.property name="value" */ private String value; private Facility(String v) { this.value = v; } /** * @return * @uml.property name="value" */ public String getValue() { return this.value; } }