java.lang.Cloneable
, CMLibrary
, CMObject
, java.lang.Comparable<CMObject>
, com.planet_ink.coffee_web.interfaces.HTTPOutputConverter
WebMacroCreamer
public interface WebMacroLibrary extends CMLibrary, com.planet_ink.coffee_web.interfaces.HTTPOutputConverter
idConverter
Modifier and Type | Method | Description |
---|---|---|
java.lang.String |
clearWebMacros(java.lang.String s) |
Searches for web-macro commands in the given string and, if found,
disables them and returns the modified string.
|
java.lang.String |
clearWebMacros(java.lang.StringBuffer s) |
Searches for web-macro commands in the given string and, if found,
disables them and returns the modified string.
|
java.util.Collection<Item> |
contributeItemsToWebCache(java.util.Collection<Item> items) |
Adds the given items to the web cache, if each one qualifies to
be so added.
|
java.util.Collection<MOB> |
contributeMOBsToWebCache(java.util.Collection<MOB> inhabs) |
Adds the given mobs to the web cache, if each one qualifies to
be so added.
|
Item |
findItemInAnything(java.lang.Object allitems,
java.lang.String MATCHING) |
Given some sort of item-finding code, including catalog codes,
item class ids, catalog codes, web cache codes, and general
canonical java class names, this will return the best item
match it can find.
|
Item |
findItemInWebCache(java.lang.String MATCHING) |
Given some sort of item-finding code, including catalog codes,
item class ids, catalog codes, web cache codes, and general
canonical java class names, this will return the best item
match it can find.
|
Item |
findItemMatchInWebCache(Item I) |
Searches the official item web cache for an item just
like the one given and, if found, returns the cache
object.
|
java.lang.String |
findItemWebCacheCode(Item I) |
Searches the official item web cache for this item, or
one just like it, and returns the code for it.
|
java.lang.String |
findItemWebCacheCode(Room R,
Item I) |
Given an item and its room owner, this will return the item web
cache code for the item.
|
java.lang.String |
findItemWebCacheCode(MOB M,
Item I) |
Given an item and its mob owner, this will return the item web
cache code for the item.
|
java.lang.String |
findItemWebCacheCode(java.util.Collection<Item> allitems,
Item I) |
Searches the given item web cache for this item, or
one just like it, and returns the code for it.
|
MOB |
findMOBMatchInWebCache(MOB M) |
Searches the official web cache for a mob like the
given one, and returns it if found.
|
java.lang.String |
findMOBWebCacheCode(Room R,
MOB M) |
Returns the room-context cache code for the given mob, if it
is really in the room.
|
java.lang.String |
findMOBWebCacheCode(MOB M) |
Searches for a mob in the web cache that is just like the given mob,
and returns the cache code.
|
java.lang.String |
findMOBWebCacheCode(java.util.Collection<MOB> mobs,
MOB M) |
Given your own mob cache, this will find the mob just like the given
one and return its code.
|
java.lang.String |
getAppropriateCode(PhysicalAgent E,
Physical RorM,
java.util.Collection<? extends Physical> classes) |
Given an item or mob, this will attempt to find its like or match
in the catalog, web caches, or the given item owner, or given
web cache.
|
Item |
getItemFromCatalog(java.lang.String MATCHING) |
Searches the catalog for the item with the matching
catalog code and, if found, returns it.
|
Item |
getItemFromWebCache(Room R,
java.lang.String code) |
Give a room item owner, and the item web cache code, this
will attempt to return the matching item.
|
Item |
getItemFromWebCache(MOB M,
java.lang.String code) |
Give a mob item owner, and the item web cache code, this
will attempt to return the matching item.
|
Item |
getItemFromWebCache(java.lang.String code) |
Searches the catalog and official item web cache for the
item with the given code and, if found, returns it.
|
Item |
getItemFromWebCache(java.util.Collection<Item> allitems,
java.lang.String code) |
Searches the catalog and given item web cache for the
item with the given code and, if found, returns it.
|
java.lang.Iterable<Item> |
getItemWebCacheIterable() |
Returns an iterable of the item web cache.
|
MOB |
getMOBFromAnywhere(java.lang.String MATCHING) |
Given some sort of mob-finding code, including catalog codes,
mob class ids, catalog codes, web cache codes, and general
canonical java class names, this will return the best mob
match it can find.
|
MOB |
getMOBFromCatalog(java.lang.String MATCHING) |
If the given mob cache code is a catalog code, this will return
the mob from the catalog, if found.
|
MOB |
getMOBFromWebCache(Room R,
java.lang.String code) |
Finds the mob in the given room with the given web cache code and
returns the mob object from the cache.
|
MOB |
getMOBFromWebCache(java.lang.String code) |
Searches the official mob web cache for the mob of the given code,
which might be a catalog code also.
|
MOB |
getMOBFromWebCache(java.util.Collection<MOB> allmobs,
java.lang.String code) |
Searches the given mob web cache for the mob of the given code,
which might be a catalog code also.
|
java.lang.Iterable<MOB> |
getMOBWebCacheIterable() |
Returns an iterator through the mob web cache.
|
java.lang.String |
getWebCacheSuffix(Environmental E) |
Checks the expiration date of the given object, which
must be something from one of the web caches, as those are
the types that have their expiration date used FOR the cache.
|
boolean |
isAllNum(java.lang.String str) |
Returns whether the given string resembles a web cache
code, which consists of digits and dashes.
|
boolean |
isWebCachedItem(java.lang.Object I) |
Returns whether the given item is exactly in the
official item web cache.
|
boolean |
isWebCachedMOB(java.lang.Object M) |
Returns whether the given mob is in the web cache.
|
java.lang.String |
parseFoundMacro(java.lang.StringBuffer s,
int i,
boolean lookOnly) |
Given a stringbuffer and an index into it where an
'@' sign was found, this method will identify a potential
web macro string, and return it, optionally
deleting the '@' characters on internal macros.
|
byte[] |
virtualPageFilter(byte[] data) |
Does macro filtering on a fake web page by constructing a fake request
and calling the full page filter method.
|
java.lang.StringBuffer |
virtualPageFilter(com.planet_ink.coffee_web.interfaces.HTTPRequest request,
java.util.Map<java.lang.String,java.lang.Object> objects,
long[] processStartTime,
java.lang.String[] lastFoundMacro,
java.lang.StringBuffer data) |
The official web page filtering method for this output converter.
|
java.lang.String |
virtualPageFilter(java.lang.String data) |
Does macro filtering on a fake web page by constructing a fake request
and calling the full page filter method.
|
java.lang.StringBuffer |
virtualPageFilter(java.lang.StringBuffer data) |
Does macro filtering on a fake web page by constructing a fake request
and calling the full page filter method.
|
java.lang.StringBuffer |
virtualPageFilter(java.lang.StringBuffer data,
java.util.Map<java.lang.String,java.lang.String> parms,
java.util.Map<java.lang.String,java.lang.Object> objs) |
Does macro filtering on a fake web page by constructing a fake request
and calling the full page filter method.
|
activate, getServiceClient, L, propertiesLoaded, shutdown
copyOf, ID, initializeClass, name, newInstance
byte[] virtualPageFilter(byte[] data) throws HTTPRedirectException
data
- the fake page to filterHTTPRedirectException
- any redirect exceptions encounteredvirtualPageFilter(String)
,
virtualPageFilter(StringBuffer)
,
virtualPageFilter(StringBuffer, Map, Map)
,
virtualPageFilter(HTTPRequest, Map, long[], String[], StringBuffer)
java.lang.String virtualPageFilter(java.lang.String data) throws HTTPRedirectException
data
- the fake page to filterHTTPRedirectException
- any redirect exceptions encounteredvirtualPageFilter(byte[])
,
virtualPageFilter(StringBuffer)
,
virtualPageFilter(StringBuffer, Map, Map)
,
virtualPageFilter(HTTPRequest, Map, long[], String[], StringBuffer)
java.lang.StringBuffer virtualPageFilter(java.lang.StringBuffer data) throws HTTPRedirectException
data
- the fake page to filterHTTPRedirectException
- any redirect exceptions encounteredvirtualPageFilter(byte[])
,
virtualPageFilter(String)
,
virtualPageFilter(StringBuffer, Map, Map)
,
virtualPageFilter(HTTPRequest, Map, long[], String[], StringBuffer)
java.lang.StringBuffer virtualPageFilter(java.lang.StringBuffer data, java.util.Map<java.lang.String,java.lang.String> parms, java.util.Map<java.lang.String,java.lang.Object> objs) throws HTTPRedirectException
data
- the fake page to filterparms
- fake request parameters, which normally come from the request objectobjs
- the object cache for use by macrosHTTPRedirectException
- any redirect exceptions encounteredvirtualPageFilter(byte[])
,
virtualPageFilter(String)
,
virtualPageFilter(StringBuffer)
,
virtualPageFilter(HTTPRequest, Map, long[], String[], StringBuffer)
java.lang.StringBuffer virtualPageFilter(com.planet_ink.coffee_web.interfaces.HTTPRequest request, java.util.Map<java.lang.String,java.lang.Object> objects, long[] processStartTime, java.lang.String[] lastFoundMacro, java.lang.StringBuffer data) throws HTTPRedirectException
request
- the web request that was madeobjects
- an empty 'sessions' object map for use by macros as a cacheprocessStartTime
- a 1-dimensional array with start time-ms, for timeoutslastFoundMacro
- a 1-dimensional array for storing the last found macrodata
- the page data, which will be modified and returned by the filterHTTPRedirectException
- an http redirect exception foundvirtualPageFilter(byte[])
,
virtualPageFilter(String)
,
virtualPageFilter(StringBuffer)
,
virtualPageFilter(StringBuffer, Map, Map)
java.lang.String clearWebMacros(java.lang.StringBuffer s)
s
- the string to clear or webjava.lang.String parseFoundMacro(java.lang.StringBuffer s, int i, boolean lookOnly)
s
- the stringbuffer to match a webmacro ini
- the index to start looking atlookOnly
- FALSE to clear '@' on internal macrosjava.lang.String clearWebMacros(java.lang.String s)
s
- the string to clear or webboolean isAllNum(java.lang.String str)
str
- the string to checkjava.lang.String getWebCacheSuffix(Environmental E)
E
- the mob or item to get an expiration description forjava.lang.String getAppropriateCode(PhysicalAgent E, Physical RorM, java.util.Collection<? extends Physical> classes)
E
- the object to get a code forRorM
- an item ownerclasses
- a web cachejava.util.Collection<Item> contributeItemsToWebCache(java.util.Collection<Item> items)
items
- the collection of items to submitfindItemMatchInWebCache(Item)
,
findItemInWebCache(String)
,
findItemInAnything(Object, String)
,
getItemFromCatalog(String)
,
getItemFromWebCache(Collection, String)
,
getItemFromWebCache(String)
,
getItemFromWebCache(Room, String)
,
getItemFromWebCache(MOB, String)
,
findItemWebCacheCode(MOB, Item)
,
findItemWebCacheCode(Collection, Item)
,
findItemWebCacheCode(Item)
,
findItemWebCacheCode(Room, Item)
,
isWebCachedItem(Object)
,
getItemWebCacheIterable()
Item findItemMatchInWebCache(Item I)
I
- the item to look for likecontributeItemsToWebCache(Collection)
,
findItemInWebCache(String)
,
findItemInAnything(Object, String)
,
getItemFromCatalog(String)
,
getItemFromWebCache(Collection, String)
,
getItemFromWebCache(String)
,
getItemFromWebCache(Room, String)
,
getItemFromWebCache(MOB, String)
,
findItemWebCacheCode(MOB, Item)
,
findItemWebCacheCode(Collection, Item)
,
findItemWebCacheCode(Item)
,
findItemWebCacheCode(Room, Item)
,
isWebCachedItem(Object)
,
getItemWebCacheIterable()
Item findItemInWebCache(java.lang.String MATCHING)
MATCHING
- the item code to look forcontributeItemsToWebCache(Collection)
,
findItemMatchInWebCache(Item)
,
findItemInAnything(Object, String)
,
getItemFromCatalog(String)
,
getItemFromWebCache(Collection, String)
,
getItemFromWebCache(String)
,
getItemFromWebCache(Room, String)
,
getItemFromWebCache(MOB, String)
,
findItemWebCacheCode(MOB, Item)
,
findItemWebCacheCode(Collection, Item)
,
findItemWebCacheCode(Item)
,
findItemWebCacheCode(Room, Item)
,
isWebCachedItem(Object)
,
getItemWebCacheIterable()
Item findItemInAnything(java.lang.Object allitems, java.lang.String MATCHING)
allitems
- a mob, a room, or an item cache, or nullMATCHING
- the item code to look forcontributeItemsToWebCache(Collection)
,
findItemMatchInWebCache(Item)
,
findItemInWebCache(String)
,
getItemFromCatalog(String)
,
getItemFromWebCache(Collection, String)
,
getItemFromWebCache(String)
,
getItemFromWebCache(Room, String)
,
getItemFromWebCache(MOB, String)
,
findItemWebCacheCode(MOB, Item)
,
findItemWebCacheCode(Collection, Item)
,
findItemWebCacheCode(Item)
,
findItemWebCacheCode(Room, Item)
,
isWebCachedItem(Object)
,
getItemWebCacheIterable()
Item getItemFromCatalog(java.lang.String MATCHING)
MATCHING
- the catalog item codecontributeItemsToWebCache(Collection)
,
findItemMatchInWebCache(Item)
,
findItemInWebCache(String)
,
findItemInAnything(Object, String)
,
getItemFromWebCache(Collection, String)
,
getItemFromWebCache(String)
,
getItemFromWebCache(Room, String)
,
getItemFromWebCache(MOB, String)
,
findItemWebCacheCode(MOB, Item)
,
findItemWebCacheCode(Collection, Item)
,
findItemWebCacheCode(Item)
,
findItemWebCacheCode(Room, Item)
,
isWebCachedItem(Object)
,
getItemWebCacheIterable()
Item getItemFromWebCache(java.util.Collection<Item> allitems, java.lang.String code)
code
- the item web cache code, or catalog codeallitems
- the item web cache to usecontributeItemsToWebCache(Collection)
,
findItemMatchInWebCache(Item)
,
findItemInWebCache(String)
,
findItemInAnything(Object, String)
,
getItemFromCatalog(String)
,
getItemFromWebCache(String)
,
getItemFromWebCache(Room, String)
,
getItemFromWebCache(MOB, String)
,
findItemWebCacheCode(MOB, Item)
,
findItemWebCacheCode(Collection, Item)
,
findItemWebCacheCode(Item)
,
findItemWebCacheCode(Room, Item)
,
isWebCachedItem(Object)
,
getItemWebCacheIterable()
Item getItemFromWebCache(java.lang.String code)
code
- the item web cache code, or catalog codecontributeItemsToWebCache(Collection)
,
findItemMatchInWebCache(Item)
,
findItemInWebCache(String)
,
findItemInAnything(Object, String)
,
getItemFromCatalog(String)
,
getItemFromWebCache(Collection, String)
,
getItemFromWebCache(Room, String)
,
getItemFromWebCache(MOB, String)
,
findItemWebCacheCode(MOB, Item)
,
findItemWebCacheCode(Collection, Item)
,
findItemWebCacheCode(Item)
,
findItemWebCacheCode(Room, Item)
,
isWebCachedItem(Object)
,
getItemWebCacheIterable()
Item getItemFromWebCache(Room R, java.lang.String code)
R
- the room item ownercode
- the item codecontributeItemsToWebCache(Collection)
,
findItemMatchInWebCache(Item)
,
findItemInWebCache(String)
,
findItemInAnything(Object, String)
,
getItemFromCatalog(String)
,
getItemFromWebCache(Collection, String)
,
getItemFromWebCache(String)
,
getItemFromWebCache(MOB, String)
,
findItemWebCacheCode(MOB, Item)
,
findItemWebCacheCode(Collection, Item)
,
findItemWebCacheCode(Item)
,
findItemWebCacheCode(Room, Item)
,
isWebCachedItem(Object)
,
getItemWebCacheIterable()
Item getItemFromWebCache(MOB M, java.lang.String code)
M
- the mob item ownercode
- the item codecontributeItemsToWebCache(Collection)
,
findItemMatchInWebCache(Item)
,
findItemInWebCache(String)
,
findItemInAnything(Object, String)
,
getItemFromCatalog(String)
,
getItemFromWebCache(Collection, String)
,
getItemFromWebCache(String)
,
getItemFromWebCache(Room, String)
,
findItemWebCacheCode(MOB, Item)
,
findItemWebCacheCode(Collection, Item)
,
findItemWebCacheCode(Item)
,
findItemWebCacheCode(Room, Item)
,
isWebCachedItem(Object)
,
getItemWebCacheIterable()
java.lang.String findItemWebCacheCode(MOB M, Item I)
M
- the mob to find the item inI
- the item to get a code forcontributeItemsToWebCache(Collection)
,
findItemMatchInWebCache(Item)
,
findItemInWebCache(String)
,
findItemInAnything(Object, String)
,
getItemFromCatalog(String)
,
getItemFromWebCache(Collection, String)
,
getItemFromWebCache(String)
,
getItemFromWebCache(Room, String)
,
getItemFromWebCache(MOB, String)
,
findItemWebCacheCode(Collection, Item)
,
findItemWebCacheCode(Item)
,
findItemWebCacheCode(Room, Item)
,
isWebCachedItem(Object)
,
getItemWebCacheIterable()
java.lang.String findItemWebCacheCode(java.util.Collection<Item> allitems, Item I)
I
- the item to find likeallitems
- the web item cache to usecontributeItemsToWebCache(Collection)
,
findItemMatchInWebCache(Item)
,
findItemInWebCache(String)
,
findItemInAnything(Object, String)
,
getItemFromCatalog(String)
,
getItemFromWebCache(Collection, String)
,
getItemFromWebCache(String)
,
getItemFromWebCache(Room, String)
,
getItemFromWebCache(MOB, String)
,
findItemWebCacheCode(MOB, Item)
,
findItemWebCacheCode(Item)
,
findItemWebCacheCode(Room, Item)
,
isWebCachedItem(Object)
,
getItemWebCacheIterable()
java.lang.String findItemWebCacheCode(Item I)
I
- the item to find likecontributeItemsToWebCache(Collection)
,
findItemMatchInWebCache(Item)
,
findItemInWebCache(String)
,
findItemInAnything(Object, String)
,
getItemFromCatalog(String)
,
getItemFromWebCache(Collection, String)
,
getItemFromWebCache(String)
,
getItemFromWebCache(Room, String)
,
getItemFromWebCache(MOB, String)
,
findItemWebCacheCode(MOB, Item)
,
findItemWebCacheCode(Collection, Item)
,
findItemWebCacheCode(Room, Item)
,
isWebCachedItem(Object)
,
getItemWebCacheIterable()
java.lang.String findItemWebCacheCode(Room R, Item I)
R
- the room to find the item inI
- the item to get a code forcontributeItemsToWebCache(Collection)
,
findItemMatchInWebCache(Item)
,
findItemInWebCache(String)
,
findItemInAnything(Object, String)
,
getItemFromCatalog(String)
,
getItemFromWebCache(Collection, String)
,
getItemFromWebCache(String)
,
getItemFromWebCache(Room, String)
,
getItemFromWebCache(MOB, String)
,
findItemWebCacheCode(MOB, Item)
,
findItemWebCacheCode(Collection, Item)
,
findItemWebCacheCode(Item)
,
isWebCachedItem(Object)
,
getItemWebCacheIterable()
boolean isWebCachedItem(java.lang.Object I)
I
- the item to look forcontributeItemsToWebCache(Collection)
,
findItemMatchInWebCache(Item)
,
findItemInWebCache(String)
,
findItemInAnything(Object, String)
,
getItemFromCatalog(String)
,
getItemFromWebCache(Collection, String)
,
getItemFromWebCache(String)
,
getItemFromWebCache(Room, String)
,
getItemFromWebCache(MOB, String)
,
findItemWebCacheCode(MOB, Item)
,
findItemWebCacheCode(Collection, Item)
,
findItemWebCacheCode(Item)
,
findItemWebCacheCode(Room, Item)
,
getItemWebCacheIterable()
java.lang.Iterable<Item> getItemWebCacheIterable()
contributeItemsToWebCache(Collection)
,
findItemMatchInWebCache(Item)
,
findItemInWebCache(String)
,
findItemInAnything(Object, String)
,
getItemFromCatalog(String)
,
getItemFromWebCache(Collection, String)
,
getItemFromWebCache(String)
,
getItemFromWebCache(Room, String)
,
getItemFromWebCache(MOB, String)
,
findItemWebCacheCode(MOB, Item)
,
findItemWebCacheCode(Collection, Item)
,
findItemWebCacheCode(Item)
,
findItemWebCacheCode(Room, Item)
,
isWebCachedItem(Object)
java.util.Collection<MOB> contributeMOBsToWebCache(java.util.Collection<MOB> inhabs)
inhabs
- the mobs to add to the web cachefindMOBMatchInWebCache(MOB)
,
getMOBFromAnywhere(String)
,
getMOBFromCatalog(String)
,
getMOBFromWebCache(Collection, String)
,
getMOBFromWebCache(String)
,
getMOBFromWebCache(Room, String)
,
findMOBWebCacheCode(Collection, MOB)
,
findMOBWebCacheCode(MOB)
,
findMOBWebCacheCode(Room, MOB)
,
isWebCachedMOB(Object)
,
getMOBWebCacheIterable()
MOB findMOBMatchInWebCache(MOB M)
M
- the mob to find a match forcontributeMOBsToWebCache(Collection)
,
getMOBFromAnywhere(String)
,
getMOBFromCatalog(String)
,
getMOBFromWebCache(Collection, String)
,
getMOBFromWebCache(String)
,
getMOBFromWebCache(Room, String)
,
findMOBWebCacheCode(Collection, MOB)
,
findMOBWebCacheCode(MOB)
,
findMOBWebCacheCode(Room, MOB)
,
isWebCachedMOB(Object)
,
getMOBWebCacheIterable()
MOB getMOBFromAnywhere(java.lang.String MATCHING)
MATCHING
- the mob finding codecontributeMOBsToWebCache(Collection)
,
findMOBMatchInWebCache(MOB)
,
getMOBFromCatalog(String)
,
getMOBFromWebCache(Collection, String)
,
getMOBFromWebCache(String)
,
getMOBFromWebCache(Room, String)
,
findMOBWebCacheCode(Collection, MOB)
,
findMOBWebCacheCode(MOB)
,
findMOBWebCacheCode(Room, MOB)
,
isWebCachedMOB(Object)
,
getMOBWebCacheIterable()
MOB getMOBFromCatalog(java.lang.String MATCHING)
MATCHING
- the catalog cache codecontributeMOBsToWebCache(Collection)
,
findMOBMatchInWebCache(MOB)
,
getMOBFromAnywhere(String)
,
getMOBFromWebCache(Collection, String)
,
getMOBFromWebCache(String)
,
getMOBFromWebCache(Room, String)
,
findMOBWebCacheCode(Collection, MOB)
,
findMOBWebCacheCode(MOB)
,
findMOBWebCacheCode(Room, MOB)
,
isWebCachedMOB(Object)
,
getMOBWebCacheIterable()
MOB getMOBFromWebCache(java.util.Collection<MOB> allmobs, java.lang.String code)
allmobs
- your mob web cachecode
- the mob cache codecontributeMOBsToWebCache(Collection)
,
findMOBMatchInWebCache(MOB)
,
getMOBFromAnywhere(String)
,
getMOBFromCatalog(String)
,
getMOBFromWebCache(String)
,
getMOBFromWebCache(Room, String)
,
findMOBWebCacheCode(Collection, MOB)
,
findMOBWebCacheCode(MOB)
,
findMOBWebCacheCode(Room, MOB)
,
isWebCachedMOB(Object)
,
getMOBWebCacheIterable()
MOB getMOBFromWebCache(java.lang.String code)
code
- the mob code to get a mob forcontributeMOBsToWebCache(Collection)
,
findMOBMatchInWebCache(MOB)
,
getMOBFromAnywhere(String)
,
getMOBFromCatalog(String)
,
getMOBFromWebCache(Collection, String)
,
getMOBFromWebCache(Room, String)
,
findMOBWebCacheCode(Collection, MOB)
,
findMOBWebCacheCode(MOB)
,
findMOBWebCacheCode(Room, MOB)
,
isWebCachedMOB(Object)
,
getMOBWebCacheIterable()
MOB getMOBFromWebCache(Room R, java.lang.String code)
R
- the room the mob with the code must be incode
- the mob cache codecontributeMOBsToWebCache(Collection)
,
findMOBMatchInWebCache(MOB)
,
getMOBFromAnywhere(String)
,
getMOBFromCatalog(String)
,
getMOBFromWebCache(Collection, String)
,
getMOBFromWebCache(String)
,
findMOBWebCacheCode(Collection, MOB)
,
findMOBWebCacheCode(MOB)
,
findMOBWebCacheCode(Room, MOB)
,
isWebCachedMOB(Object)
,
getMOBWebCacheIterable()
java.lang.String findMOBWebCacheCode(java.util.Collection<MOB> mobs, MOB M)
mobs
- the mob cacheM
- the mob to look forcontributeMOBsToWebCache(Collection)
,
findMOBMatchInWebCache(MOB)
,
getMOBFromAnywhere(String)
,
getMOBFromCatalog(String)
,
getMOBFromWebCache(Collection, String)
,
getMOBFromWebCache(String)
,
getMOBFromWebCache(Room, String)
,
findMOBWebCacheCode(MOB)
,
findMOBWebCacheCode(Room, MOB)
,
isWebCachedMOB(Object)
,
getMOBWebCacheIterable()
java.lang.String findMOBWebCacheCode(MOB M)
M
- the mob to search forcontributeMOBsToWebCache(Collection)
,
findMOBMatchInWebCache(MOB)
,
getMOBFromAnywhere(String)
,
getMOBFromCatalog(String)
,
getMOBFromWebCache(Collection, String)
,
getMOBFromWebCache(String)
,
getMOBFromWebCache(Room, String)
,
findMOBWebCacheCode(Collection, MOB)
,
findMOBWebCacheCode(Room, MOB)
,
isWebCachedMOB(Object)
,
getMOBWebCacheIterable()
java.lang.String findMOBWebCacheCode(Room R, MOB M)
R
- the room to look inM
- the mob to get a code forcontributeMOBsToWebCache(Collection)
,
findMOBMatchInWebCache(MOB)
,
getMOBFromAnywhere(String)
,
getMOBFromCatalog(String)
,
getMOBFromWebCache(Collection, String)
,
getMOBFromWebCache(String)
,
getMOBFromWebCache(Room, String)
,
findMOBWebCacheCode(Collection, MOB)
,
findMOBWebCacheCode(MOB)
,
isWebCachedMOB(Object)
,
getMOBWebCacheIterable()
boolean isWebCachedMOB(java.lang.Object M)
M
- the mob to look forcontributeMOBsToWebCache(Collection)
,
findMOBMatchInWebCache(MOB)
,
getMOBFromAnywhere(String)
,
getMOBFromCatalog(String)
,
getMOBFromWebCache(Collection, String)
,
getMOBFromWebCache(String)
,
getMOBFromWebCache(Room, String)
,
findMOBWebCacheCode(Collection, MOB)
,
findMOBWebCacheCode(MOB)
,
findMOBWebCacheCode(Room, MOB)
,
getMOBWebCacheIterable()
java.lang.Iterable<MOB> getMOBWebCacheIterable()
contributeMOBsToWebCache(Collection)
,
findMOBMatchInWebCache(MOB)
,
getMOBFromAnywhere(String)
,
getMOBFromCatalog(String)
,
getMOBFromWebCache(Collection, String)
,
getMOBFromWebCache(String)
,
getMOBFromWebCache(Room, String)
,
findMOBWebCacheCode(Collection, MOB)
,
findMOBWebCacheCode(MOB)
,
findMOBWebCacheCode(Room, MOB)
,
isWebCachedMOB(Object)