Package org.marketcetera.util.misc
Class UCPFilterInfo
- java.lang.Object
-
- org.marketcetera.util.misc.UCPFilterInfo
-
-
Field Summary
Fields Modifier and Type Field Description private static HashMap<UCPFilter,UCPFilterInfo>mMapprivate int[]mUCPs
-
Constructor Summary
Constructors Modifier Constructor Description privateUCPFilterInfo(UCPFilter filter)Creates a new meta-information holder for the given filter.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static UCPFilterInfogetInfo(UCPFilter filter)Returns the meta-information holder for the given filter.int[]getUCPs()Returns the code points acceptable to the receiver's associated filter, in ascending numerical order.
-
-
-
Field Detail
-
mMap
private static final HashMap<UCPFilter,UCPFilterInfo> mMap
-
mUCPs
private int[] mUCPs
-
-
Constructor Detail
-
UCPFilterInfo
private UCPFilterInfo(UCPFilter filter)
Creates a new meta-information holder for the given filter.- Parameters:
filter- The filter.
-
-
Method Detail
-
getInfo
public static UCPFilterInfo getInfo(UCPFilter filter)
Returns the meta-information holder for the given filter.- Parameters:
filter- The filter.- Returns:
- The holder.
-
getUCPs
public int[] getUCPs()
Returns the code points acceptable to the receiver's associated filter, in ascending numerical order.- Returns:
- The code points.
-
-