Java 2 Útikalauz programozóknak 5.0

elte.java2_utikalauz5.programok
ImplGeneralas.Mod felsorolási típus

java.lang.Object
  extended by java.lang.Enum<ImplGeneralas.Mod>
      extended by elte.java2_utikalauz5.programok.ImplGeneralas.Mod
Megvalósított interfészek:
Serializable, Comparable<ImplGeneralas.Mod>
Beágyazó osztály:
ImplGeneralas

public static enum ImplGeneralas.Mod
extends Enum<ImplGeneralas.Mod>

Interfészek üres implementációjának előállítását vezérlő beágyazott felsorolási típus. Értékeit a beágyazó annotációhoz kell megadni.

Mivel a values és valueOf metódusokat a fordító generálja, ezért azokhoz nem adható lokalizált dokumentációs leírás.


Felsorolt értékek
KELL_DEFAULT
          Interfészek alapértelmezett visszatérési értéket visszaadó üres implementációját előíró érték.
KELL_EXTENDS
          Az interfészek kiterjesztési hierarchiáját követő öröklési hierarchiába rendezett üres implementációját előíró érték.
KELL_RETURN
          Interfészek üres, a Return annotáció figyelembe vételével történő implementációját előíró érték.
NEM_KELL
          Interfészek üres implementációjának elhagyását előíró érték.
 
Metódusok
static ImplGeneralas.Mod valueOf(String name)
          Returns the enum constant of this type with the specified name.
static ImplGeneralas.Mod[] values()
          Returns an array containing the constants of this enum type, in the order they're declared.
 
java.lang.Enum osztálytól örökölt metódusok
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
java.lang.Object osztálytól örökölt metódusok
finalize, getClass, notify, notifyAll, wait, wait, wait
 

Felsorolt értékek részletezése

KELL_EXTENDS

public static final ImplGeneralas.Mod KELL_EXTENDS
Az interfészek kiterjesztési hierarchiáját követő öröklési hierarchiába rendezett üres implementációját előíró érték.


KELL_RETURN

public static final ImplGeneralas.Mod KELL_RETURN
Interfészek üres, a Return annotáció figyelembe vételével történő implementációját előíró érték.


KELL_DEFAULT

public static final ImplGeneralas.Mod KELL_DEFAULT
Interfészek alapértelmezett visszatérési értéket visszaadó üres implementációját előíró érték.


NEM_KELL

public static final ImplGeneralas.Mod NEM_KELL
Interfészek üres implementációjának elhagyását előíró érték. Akkor használhatjuk, ha a csomagszinten bekapcsolt generálást egyes interfészeknél ki szeretnénk kapcsolni.

Metódusok részletezése

values

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

Visszaadott érték:
an array containing the constants of this enum type, in the order they're declared

valueOf

public static ImplGeneralas.Mod 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.)

Paraméterek:
name - the name of the enum constant to be returned.
Visszaadott érték:
the enum constant with the specified name
Specifikált kivételek:
IllegalArgumentException - if this enum type has no constant with the specified name

Java 2 Útikalauz programozóknak 5.0