We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support CharSequence instead of String on @ExistInCodeList.
CharSequence
String
@ExistInCodeList
Replace generic type(String -> CharSequence) and change class name (ExistInCodeListValidatorForString -> ExistInCodeListValidatorForCharSequence).
ExistInCodeListValidatorForString
ExistInCodeListValidatorForCharSequence
[Before]
public class ExistInCodeListValidatorForString extends AbstractExistInCodeListValidator<String> { // ... }
[After]
public class ExistInCodeListValidatorForCharSequence extends AbstractExistInCodeListValidator<CharSequence> { // ... }
N/A
The text was updated successfully, but these errors were encountered:
Suppot CharSequence #402
d2c663a
Merge pull request #432 from terasolunaorg/issues/402_Support_CharSeq…
4113947
…uence Suppot CharSequence #402
Fix Javadoc of ExistInCodeListValidatorForCharSequence #402
bf26a3e
Merge pull request #439 from terasolunaorg/issues/402_support-CharSeq…
c641e2a
…uence-javadoc Fix Javadoc of ExistInCodeListValidatorForCharSequence #402
btjinbotm
No branches or pull requests
Description
Support
CharSequence
instead ofString
on@ExistInCodeList
.Possible Solutions
Replace generic type(
String
->CharSequence
) and change class name (ExistInCodeListValidatorForString
->ExistInCodeListValidatorForCharSequence
).[Before]
[After]
Affects Version/s
Fix Version/s
Issue Links
N/A
The text was updated successfully, but these errors were encountered: