functionalj.lens.lenses.java.time.ZoneIdLens Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of functionalj-core Show documentation
Show all versions of functionalj-core Show documentation
The module for FunctionalJ Core.
package functionalj.lens.lenses.java.time;
import java.time.ZoneId;
import functionalj.lens.core.LensSpec;
import functionalj.lens.lenses.ObjectLensImpl;
public class ZoneIdLens
extends ObjectLensImpl
implements ZoneIdAccess {
public static final ZoneIdLens theZoneId = new ZoneIdLens(LensSpec.of(ZoneId.class));
public static ZoneIdLens of(LensSpec spec) {
return new ZoneIdLens(spec);
}
public ZoneIdLens(LensSpec spec) {
super(spec);
}
}