public class URLResourceLoader extends Object implements ResourceLoader
| Modifier and Type | Field and Description |
|---|---|
static String |
SCHEMA_NAME |
| Constructor and Description |
|---|
URLResourceLoader() |
| Modifier and Type | Method and Description |
|---|---|
ResourceKey |
createKey(Object value,
Map factoryKeys)
Creates a new resource key from the given object and the factory keys.
|
ResourceKey |
deriveKey(ResourceKey parent,
String path,
Map factoryKeys)
Derives a new resource key from the given key.
|
ResourceKey |
deserialize(ResourceKey bundleKey,
String stringKey)
Parses the input string and returns a newly created ResourceKey based on the string data
|
boolean |
isSupportedDeserializer(String data)
Determines if the resource loader is capable of deserializing the
serialized version of the ResourceKey.
|
boolean |
isSupportedKey(ResourceKey key)
Checks, whether this resource loader implementation was responsible for
creating this key.
|
ResourceData |
load(ResourceKey key)
Loads the binary data represented by this key.
|
String |
serialize(ResourceKey bundleKey,
ResourceKey key)
Creates a String version of the resource key that can be used to generate a new ResourceKey
object via deserialization
|
URL |
toURL(ResourceKey key)
Generates a
URL version of the supplied ResourceKey. |
public static final String SCHEMA_NAME
public boolean isSupportedKey(ResourceKey key)
isSupportedKey in interface ResourceLoaderkey - public ResourceKey createKey(Object value, Map factoryKeys) throws ResourceKeyCreationException
createKey in interface ResourceLoadervalue - factoryKeys - ResourceKeyCreationException - if creating the key failed.public ResourceKey deriveKey(ResourceKey parent, String path, Map factoryKeys) throws ResourceKeyCreationException
deriveKey in interface ResourceLoaderparent - the parentpath - the derived path (can be null).factoryKeys - the optional factory keys (can be null).ResourceKeyCreationException - if the key cannot be derived for any reason.public URL toURL(ResourceKey key)
ResourceLoaderURL version of the supplied ResourceKey.toURL in interface ResourceLoaderkey - the ResourceKey from which a URL will be createdResourceKeypublic ResourceData load(ResourceKey key) throws ResourceLoadingException
ResourceLoaderload in interface ResourceLoaderResourceLoadingExceptionpublic String serialize(ResourceKey bundleKey, ResourceKey key)
serialize in interface ResourceLoaderbundleKey - key - String which is a serialized version of the ResourceKeypublic ResourceKey deserialize(ResourceKey bundleKey, String stringKey) throws ResourceKeyCreationException
deserialize in interface ResourceLoaderstringKey - the String representation of the ResourceKey @return a ResourceKey which matches the String representationResourceKeyCreationException - indicates an error occurred in the creation or
deserialization of the ResourceKeypublic boolean isSupportedDeserializer(String data)
ResourceLoaderisSupportedDeserializer in interface ResourceLoaderdata - the serialized version of the resource keytrue if this ResourceLoader is capable of deserializing the
serialized version of this resource key, false otherwise.