template_applicatif.wVue
Enum Vue

Object
  extended by Enum<Vue>
      extended by template_applicatif.wVue.Vue
All Implemented Interfaces:
Serializable, Comparable<Vue>

public enum Vue
extends Enum<Vue>

Identifiant du type de Vue

Author:
William
A_doc
Licence.

Enum Constant Summary
F2
          Liste simple
Liste dans DlgPopup spécial saisie sans Modification
F2F3
          Double Fiche et Liste
Liste & fiche Dans DlgPopup
F2RECHERCHER
          Double Fiche et Liste en cours de dev
Liste & fiche libelle
F2UNIQUE1
          Liste simple
Liste dans DlgPopup Spécial saisie code unique
F2UNIQUE2
          Liste simple
Liste dans DlgPopup Spécial saisie code unique
F3
          Double Fiche et Liste
Liste & fiche Dans Frame Principale
F3DETAIL
          Double Fiche et Liste
Liste & fiche dans fiche pour saisie en ligne
F3DETAILHIDDEN
          Double Fiche et Liste
Liste & fiche dans fiche pour saisie en ligne liste & Fiche cachées
F3HIGHTDETAIL
          Double Fiche et Liste
Liste & fiche dans fiche pour saisie en ligne
F3POINTAGE
          Double Fiche et Liste
Liste & fiche dans fiche pour saisie du pointage d'heures
FICHE
          Fiche libelle simple d'affichage
Fiche spécial sans modification
FICHEDEA
          spécial double code
Liste borne à borne spécial édition
FICHEDETAIL
          Fiche Modif simple
Fiche unique
PRINTLISTESPE0
           
PRINTLISTESPE1
           
PRINTLISTESPE2
           
PRINTLISTESPE3
           
TABLESTRUCT
           
VUEINDEFINIE
           
 
Field Summary
(package private)  int vue
           
 
Method Summary
 int value()
           
static Vue valueOf(String name)
          Returns the enum constant of this type with the specified name.
static Vue[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

F3

public static final Vue F3
Double Fiche et Liste
Liste & fiche Dans Frame Principale


F2F3

public static final Vue F2F3
Double Fiche et Liste
Liste & fiche Dans DlgPopup


F3DETAIL

public static final Vue F3DETAIL
Double Fiche et Liste
Liste & fiche dans fiche pour saisie en ligne


F3DETAILHIDDEN

public static final Vue F3DETAILHIDDEN
Double Fiche et Liste
Liste & fiche dans fiche pour saisie en ligne liste & Fiche cachées


F3HIGHTDETAIL

public static final Vue F3HIGHTDETAIL
Double Fiche et Liste
Liste & fiche dans fiche pour saisie en ligne


F3POINTAGE

public static final Vue F3POINTAGE
Double Fiche et Liste
Liste & fiche dans fiche pour saisie du pointage d'heures


F2RECHERCHER

public static final Vue F2RECHERCHER
Double Fiche et Liste en cours de dev
Liste & fiche libelle


F2

public static final Vue F2
Liste simple
Liste dans DlgPopup spécial saisie sans Modification


F2UNIQUE1

public static final Vue F2UNIQUE1
Liste simple
Liste dans DlgPopup Spécial saisie code unique


F2UNIQUE2

public static final Vue F2UNIQUE2
Liste simple
Liste dans DlgPopup Spécial saisie code unique


FICHEDETAIL

public static final Vue FICHEDETAIL
Fiche Modif simple
Fiche unique


FICHE

public static final Vue FICHE
Fiche libelle simple d'affichage
Fiche spécial sans modification


FICHEDEA

public static final Vue FICHEDEA
spécial double code
Liste borne à borne spécial édition


VUEINDEFINIE

public static final Vue VUEINDEFINIE

TABLESTRUCT

public static final Vue TABLESTRUCT

PRINTLISTESPE0

public static final Vue PRINTLISTESPE0

PRINTLISTESPE1

public static final Vue PRINTLISTESPE1

PRINTLISTESPE2

public static final Vue PRINTLISTESPE2

PRINTLISTESPE3

public static final Vue PRINTLISTESPE3
Field Detail

vue

int vue
Method Detail

values

public static Vue[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (Vue c : Vue.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static Vue valueOf(String name)
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:
IllegalArgumentException - if this enum type has no constant with the specified name
NullPointerException - if the argument is null

value

public int value()