PrayerTime.java :  » GPS » adhanalarm » net » sourceforge » jitl » Android Open Source

Android Open Source » GPS » adhanalarm 
adhanalarm » net » sourceforge » jitl » PrayerTime.java
package net.sourceforge.jitl;

/**
 * This class is an enumeration of possible prayer and other
 * useful events.
 *
 */
public class PrayerTime {
  private PrayerTime() {
  }
  /**
   * Fajr time
   */
  public final static PrayerTime FAJR = new PrayerTime();
  
  /**
   * Shurooq time
   */
  public final static PrayerTime SHUROOQ = new PrayerTime();
  
  /**
   * Thuhr time
   */
  public final static PrayerTime THUHR = new PrayerTime();
  
  /**
   * Assr time
   */
  public final static PrayerTime ASSR = new PrayerTime();
  
  /**
   * Maghrib time
   */
  public final static PrayerTime MAGHRIB = new PrayerTime();
  
  /**
   * Ishaa time
   */
  public final static PrayerTime ISHAA = new PrayerTime();
  
  /**
   * Imsaak time
   */
  public final static PrayerTime IMSAAK = new PrayerTime();
  
  /**
   * Next fajr time
   */
  public final static PrayerTime NEXTFAJR = new PrayerTime();
  
}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.