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

name.remal.gradle_plugins.toolkit.cache.ToolkitCacheItem Maven / Gradle / Ivy

There is a newer version: 0.64.11
Show newest version
package name.remal.gradle_plugins.toolkit.cache;

import java.nio.file.attribute.FileTime;
import javax.annotation.Nullable;
import lombok.Getter;
import lombok.RequiredArgsConstructor;
import lombok.ToString;

@RequiredArgsConstructor
@Getter
@ToString(of = "lastModified")
public class ToolkitCacheItem {
    @Nullable
    private final FileTime lastModified;
    private final T value;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy