Java 2 Útikalauz programozóknak 5.0

elte.java2_utikalauz5.cpp
BolygoTeszt.Bolygo felsorolási típus

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

static enum BolygoTeszt.Bolygo
extends Enum<BolygoTeszt.Bolygo>


Felsorolt értékek
Föld
           
Jupiter
           
Mars
           
Merkúr
           
Neptunusz
           
Szaturnusz
           
Uránusz
           
Vénusz
           
 
Mezők
static double G
           
private  double sugár
           
private  double tömeg
           
 
Metódusok
 double felszíniGravitáció()
           
 double felszíniSúly(double tömeg)
           
 double sugár()
           
 double tömeg()
           
static BolygoTeszt.Bolygo valueOf(String name)
          Returns the enum constant of this type with the specified name.
static BolygoTeszt.Bolygo[] 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

Merkúr

public static final BolygoTeszt.Bolygo Merkúr

Vénusz

public static final BolygoTeszt.Bolygo Vénusz

Föld

public static final BolygoTeszt.Bolygo Föld

Mars

public static final BolygoTeszt.Bolygo Mars

Jupiter

public static final BolygoTeszt.Bolygo Jupiter

Szaturnusz

public static final BolygoTeszt.Bolygo Szaturnusz

Uránusz

public static final BolygoTeszt.Bolygo Uránusz

Neptunusz

public static final BolygoTeszt.Bolygo Neptunusz
Mezők részletezése

tömeg

private final double tömeg

sugár

private final double sugár

G

public static final double G
Lásd még:
Konstans mezőértékek
Metódusok részletezése

values

public static final BolygoTeszt.Bolygo[] 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(BolygoTeszt.Bolygo c : BolygoTeszt.Bolygo.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 BolygoTeszt.Bolygo 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

tömeg

public double tömeg()

sugár

public double sugár()

felszíniGravitáció

public double felszíniGravitáció()

felszíniSúly

public double felszíniSúly(double tömeg)

Java 2 Útikalauz programozóknak 5.0