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

de.focus_shift.jollyday.jackson.mapping.Month Maven / Gradle / Ivy

The newest version!
package de.focus_shift.jollyday.jackson.mapping;

public enum Month {

  JANUARY,
  FEBRUARY,
  MARCH,
  APRIL,
  MAY,
  JUNE,
  JULY,
  AUGUST,
  SEPTEMBER,
  OCTOBER,
  NOVEMBER,
  DECEMBER;

  public String value() {
    return name();
  }

  public static Month fromValue(String v) {
    return valueOf(v);
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy