de.focus_shift.jollyday.jackson.mapping.Which Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jollyday-jackson Show documentation
Show all versions of jollyday-jackson Show documentation
Jackson based jollyday implementation
package de.focus_shift.jollyday.jackson.mapping;
public enum Which {
FIRST,
SECOND,
THIRD,
FOURTH,
LAST;
public String value() {
return name();
}
public static Which fromValue(String v) {
return valueOf(v);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy