All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.tyme.culture.star.twelve.Ecliptic Maven / Gradle / Ivy

There is a newer version: 1.1.7
Show newest version
package com.tyme.culture.star.twelve;

import com.tyme.LoopTyme;
import com.tyme.culture.Luck;

/**
 * 黄道黑道
 *
 * @author 6tail
 */
public class Ecliptic extends LoopTyme {

  public static final String[] NAMES = {"黄道", "黑道"};

  public Ecliptic(int index) {
    super(NAMES, index);
  }

  public Ecliptic(String name) {
    super(NAMES, name);
  }

  public static Ecliptic fromIndex(int index) {
    return new Ecliptic(index);
  }

  public static Ecliptic fromName(String name) {
    return new Ecliptic(name);
  }

  public Ecliptic next(int n) {
    return fromIndex(nextIndex(n));
  }

  /**
   * 吉凶
   *
   * @return 吉凶
   */
  public Luck getLuck() {
    return Luck.fromIndex(index);
  }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy