Uses of Interface
cdc.enums.MaskSupport
-
Uses of MaskSupport in cdc.enums
Fields in cdc.enums declared as MaskSupportModifier and TypeFieldDescriptionprotected final MaskSupport<M,V> AbstractMask.supportThe associated support class.static final MaskSupport<BooleanMask,Boolean> BooleanMask.SUPPORTstatic final MaskSupport<NullableBooleanMask,Boolean> NullableBooleanMask.SUPPORTFields in cdc.enums with type parameters of type MaskSupportModifier and TypeFieldDescriptionstatic final FormalArg<MaskSupport<?,?>> MaskToString.SUPPORTstatic final FormalArg<MaskSupport<?,?>> StringToMask.SUPPORTMethods in cdc.enums that return MaskSupportModifier and TypeMethodDescriptionfinal MaskSupport<M,V> MaskToString.getMaskSupport()final MaskSupport<M,V> StringToMask.getMaskSupport()AbstractMask.getSupport()Mask.getSupport()static <E extends Enum<E>>
MaskSupport<NullableEnumMask<E>,E> NullableEnumMask.newSupport(Class<E> enumClass) Creates a Support implementation for a standard enum.protected static <M extends AbstractMask<M,V>, V>
MaskSupport<M,V> AbstractMask.support(Class<M> maskClass, AbstractMask.Creator<M, V> creator, ListType<V> type, Nullable nullable) Creates a Support implementation.protected static <M extends AbstractMask<M,V>, V extends Enum<V>>
MaskSupport<M,V> AbstractMask.support(Class<M> maskClass, AbstractMask.Creator<M, V> creator, Class<V> enumClass, Nullable nullable) Creates a Support implementation for a standard enum.static <E extends Enum<E>>
MaskSupport<EnumMask<E>,E> Returns the support associated to an enum class.static <E extends Enum<E>>
MaskSupport<NullableEnumMask<E>,E> Returns the support associated to an enum class.Methods in cdc.enums with parameters of type MaskSupportModifier and TypeMethodDescriptionConstructors in cdc.enums with parameters of type MaskSupportModifierConstructorDescriptionprotectedAbstractMask(MaskSupport<M, V> support, Set<V> values) MaskToString(MaskSupport<M, V> maskSupport, String prefix, String separator, String suffix, Converter<? super V, String> converter) StringToMask(MaskSupport<M, V> maskSupport, String prefix, String separator, String suffix, Converter<String, ? extends V> converter, boolean trim)