Package org.zkoss.util.resource
Class Loader.Resource<V>
- java.lang.Object
-
- org.zkoss.util.resource.Loader.Resource<V>
-
public static class Loader.Resource<V> extends java.lang.Object
Represents the more information about an object loaded byLoader.load(K)
.- Since:
- 5.0.0
-
-
Field Summary
Fields Modifier and Type Field Description boolean
cacheable
Whether the resource shall be cached inResourceCache
.V
resource
The real resource that shall be returned byResourceCache.get(java.lang.Object)
.
-
-
-
Field Detail
-
resource
public final V resource
The real resource that shall be returned byResourceCache.get(java.lang.Object)
.
-
cacheable
public final boolean cacheable
Whether the resource shall be cached inResourceCache
.
-
-
Constructor Detail
-
Resource
public Resource(V resource, boolean cacheable)
-
-