com.github.rutledgepaulv.qbuilders.properties.concrete.InstantProperty Maven / Gradle / Ivy
/*
*
* * com.github.rutledgepaulv.qbuilders.properties.concrete.InstantProperty
* * *
* * * Copyright (C) 2016 Paul Rutledge
* * *
* * * This software may be modified and distributed under the terms
* * * of the MIT license. See the LICENSE file for details.
* *
*
*/
package com.github.rutledgepaulv.qbuilders.properties.concrete;
import com.github.rutledgepaulv.qbuilders.builders.QBuilder;
import com.github.rutledgepaulv.qbuilders.properties.virtual.InstantLikeProperty;
import java.time.Instant;
/**
* A property view for fields with {@link Instant} values.
*
* @param The type of the final builder.
*/
public interface InstantProperty> extends InstantLikeProperty {}