Uses of Enum
com.univocity.parsers.conversions.EnumSelector
Packages that use EnumSelector
-
Uses of EnumSelector in com.univocity.parsers.conversions
Methods in com.univocity.parsers.conversions that return EnumSelectorModifier and TypeMethodDescriptionstatic EnumSelectorReturns the enum constant of this type with the specified name.static EnumSelector[]EnumSelector.values()Returns an array containing the constants of this enum type, in the order they are declared.Methods in com.univocity.parsers.conversions with parameters of type EnumSelectorModifier and TypeMethodDescriptionstatic <T extends Enum<T>>
EnumConversion<T> Conversions.toEnum(Class<T> enumType, EnumSelector... selectors) Returns a new instance ofEnumConversionstatic <T extends Enum<T>>
EnumConversion<T> Conversions.toEnum(Class<T> enumType, String customEnumElement, EnumSelector... selectors) Returns a new instance ofEnumConversionstatic <T extends Enum<T>>
EnumConversion<T> Conversions.toEnum(Class<T> enumType, T valueIfStringIsNull, String valueIfEnumIsNull, String customEnumElement, EnumSelector... selectors) Returns a new instance ofEnumConversionConstructors in com.univocity.parsers.conversions with parameters of type EnumSelectorModifierConstructorDescriptionEnumConversion(Class<T> enumType, EnumSelector... selectors) Defines a conversion for an enumeration type that will attempt to match Strings the list ofEnumSelectors, in the specified order.EnumConversion(Class<T> enumType, String customEnumElement, EnumSelector... selectors) Defines a conversion for an enumeration type that will attempt to match Strings the list ofEnumSelectors, in the specified order.EnumConversion(Class<T> enumType, T valueIfStringIsNull, String valueIfEnumIsNull, String customEnumElement, EnumSelector... selectors) Defines a conversion for an enumeration type that will attempt to match Strings the list ofEnumSelectors, in the specified order.