Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6036697
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T05:57:46+00:00 2026-05-23T05:57:46+00:00

I want to validate a string against a set of values using annotations. What

  • 0

I want to validate a string against a set of values using annotations.

What I want is basically this:

@ValidateString(enumClass=com.co.enum)
String dataType;

int maxValue;
int minValue;
int precision;

or

@ValidateString(values={"String","Boolean", "Integer"})
String dataType;

int maxValue;
int minValue;
int precision;

I also want to do some validation on other variables depending upon the value set in dataType:

if (dataType = "String") {
    // maxValue, minValue, precision all should be null or zero
}

I can’t think of a way to achieve this by custom annotations.
Somebody please help me.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-23T05:57:47+00:00Added an answer on May 23, 2026 at 5:57 am

    This is what I did.

    Annotation

    public @interface ValidateString {
    
        String[] acceptedValues();
    
        String message() default "{uk.dds.ideskos.validator.ValidateString.message}";
    
        Class<?>[] groups() default { };
    
        Class<? extends Payload>[] payload() default { }; 
    }
    

    Validation Class

    public class StringValidator implements ConstraintValidator<ValidateString, String>{
    
        private List<String> valueList;
    
        @Override
        public void initialize(ValidateString constraintAnnotation) {
            valueList = new ArrayList<String>();
            for(String val : constraintAnnotation.acceptedValues()) {
                valueList.add(val.toUpperCase());
            }
        }
    
        @Override
        public boolean isValid(String value, ConstraintValidatorContext context) {
            return valueList.contains(value.toUpperCase());
        }
    
    }
    

    And i used it like

    @ValidateString(acceptedValues={"Integer", "String"}, message="Invalid dataType")
    String dataType;
    
    Long maxValue;
    Long minValue;
    

    Now I need to figure out how to implement conditional check
    ie. if String then maxValue and minValue should be null or Zero..

    Any ideas?

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want to validate a set of credentials against the domain controller. e.g.: Username:
I'm using this code to validate string. $countrecipient ='0123456789'; preg_match('/^[0]{1}[1]{1}[0-9]{1}[0-9]{7}?$/', $countrecipient) How if I
I want to validate an input string against a regular expression and then split
i want a regular expression to validate string to have only text,operators and these
I am looking for a regex to validate a string. I want to allow
I want to validate an XML file against an XML Schema file. It is
I want to validate below data using regex and python. Below is the dump
I want to validate an XML file against an XSD schema. The XML files
I want to validate a string only if it contains '0-9' chars with length
I have an arithmetic expression string exp = ((2+3.1)/2)*4.456; I want to validate by

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.