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

functionalj.lens.lenses.java.time.ZoneIdLens Maven / Gradle / Ivy

There is a newer version: 1.0.17
Show newest version
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);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy