Package ome.formats.enums.handler
Interface EnumerationHandler
-
public interface EnumerationHandler
An enumeration handler whose purpose is to provide extra logic, such as regular expression matching, for the lookup of enumerations for a specific type.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description IObject
findEnumeration(java.util.HashMap<java.lang.String,IObject> enumerations, java.lang.String value)
Attempt to find an enumeration from an existing set of enumeration values.
-
-
-
Method Detail
-
findEnumeration
IObject findEnumeration(java.util.HashMap<java.lang.String,IObject> enumerations, java.lang.String value)
Attempt to find an enumeration from an existing set of enumeration values.- Parameters:
enumerations
- Exhaustive set of enumerations of this type.value
- Value to look for an enumeration of.- Returns:
- An IObject object or
null
.
-
-