-
- All Implemented Interfaces:
-
icu.windea.breezeframework.core.component.Component,icu.windea.breezeframework.core.component.ConfigurableComponent,icu.windea.breezeframework.core.component.ConfigurableConverter,icu.windea.breezeframework.core.component.Converter,icu.windea.breezeframework.core.component.TypedComponent,icu.windea.breezeframework.core.model.Configurable
@ConfigParam(name = separator, type = String, defaultValue = ,)@ConfigParam(name = prefix, type = String, defaultValue = )@ConfigParam(name = suffix, type = String, defaultValue = )@ConfigParamsPassing(target = ConfigurableConverter.class, configParams = !separator,!prefix,!suffix) public class Converter.ShortArrayConverter extends AbstractConverter<ShortArray> implements ConfigurableConverter<ShortArray>
配置参数说明:
separator - 从字符串转化为数组时使用的分隔符。
prefix - 从字符串转化为数组时使用的前缀。
suffix - 从字符串转化为数组时使用的后缀。
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public classConverter.ShortArrayConverter.Default
-
Field Summary
Fields Modifier and Type Field Description private final Stringseparatorprivate final Stringprefixprivate final Stringsuffixprivate final Map<String, Object>configParamsprivate final Class<ShortArray>targetType
-
Constructor Summary
Constructors Constructor Description Converter.ShortArrayConverter(Map<String, Object> configParams)
-
Method Summary
Modifier and Type Method Description final StringgetSeparator()final StringgetPrefix()final StringgetSuffix()final Map<String, Object>getConfigParams()配置参数。 Class<ShortArray>getTargetType()目标类型。 Converter.ShortArrayConverterconfigure(Map<String, Object> configParams)根据指定的配置复制当前对象,返回一个新对象。 ShortArrayconvert(Object value)将指定的对象转化为另一个类型。如果转化失败,则抛出异常。 -
Methods inherited from class icu.windea.breezeframework.core.component.Converter.ShortArrayConverter
equals, hashCode, toString -
Methods inherited from class icu.windea.breezeframework.core.component.AbstractConverter
convertOrNull -
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
Method Detail
-
getSeparator
final String getSeparator()
-
getConfigParams
final Map<String, Object> getConfigParams()
配置参数。
-
getTargetType
Class<ShortArray> getTargetType()
目标类型。
-
configure
Converter.ShortArrayConverter configure(Map<String, Object> configParams)
根据指定的配置复制当前对象,返回一个新对象。
-
convert
ShortArray convert(Object value)
将指定的对象转化为另一个类型。如果转化失败,则抛出异常。
-
-
-
-