Class Datum

  • Direct Known Subclasses:
    ChinesischesDatum

    public class Datum
    extends java.lang.Object
    Einfache Klasse fuer ein Datum bestehend aus Jahr, Monat und Tag.
    • Constructor Summary

      Constructors 
      Constructor Description
      Datum()  
      Datum​(long jahr, int monat, int tag)  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      long getJahr()  
      int getMonat()  
      int getTag()  
      void setJahr​(long jahr)  
      void setMonat​(int monat)  
      void setTag​(int tag)  
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • Datum

        public Datum()
      • Datum

        public Datum​(long jahr,
                     int monat,
                     int tag)
    • Method Detail

      • getJahr

        public long getJahr()
      • setJahr

        public void setJahr​(long jahr)
      • getMonat

        public int getMonat()
      • setMonat

        public void setMonat​(int monat)
      • getTag

        public int getTag()
      • setTag

        public void setTag​(int tag)