All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.glowroot.agent.shaded.javax.annotation.RegEx Maven / Gradle / Ivy

There is a newer version: 0.14.0-beta.3
Show newest version
package org.glowroot.agent.shaded.org.glowroot.agent.it.harness.shaded.javax.annotation;

import java.lang.annotation.Documented;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.util.regex.Pattern;
import java.util.regex.PatternSyntaxException;

import org.glowroot.agent.shaded.org.glowroot.agent.it.harness.shaded.javax.annotation.meta.TypeQualifierNickname;
import org.glowroot.agent.shaded.org.glowroot.agent.it.harness.shaded.javax.annotation.meta.TypeQualifierValidator;
import org.glowroot.agent.shaded.org.glowroot.agent.it.harness.shaded.javax.annotation.meta.When;

/**
 * This qualifier is used to denote String values that should be a Regular
 * expression.
 * 

* When this annotation is applied to a method it applies to the method return value. */ @Documented @Syntax("RegEx") @TypeQualifierNickname @Retention(RetentionPolicy.RUNTIME) public @interface RegEx { When when() default When.ALWAYS; static class Checker implements TypeQualifierValidator { public When forConstantValue(RegEx annotation, Object value) { if (!(value instanceof String)) return When.NEVER; try { Pattern.compile((String) value); } catch (PatternSyntaxException e) { return When.NEVER; } return When.ALWAYS; } } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy