Annotation Type DisabledIfEnvironmentVariable

    • Required Element Summary

      Required Elements 
      Modifier and Type Required Element Description
      java.lang.String matches
      A regular expression that will be used to match against the retrieved value of the named() environment variable.
      java.lang.String named
      The name of the environment variable to retrieve.
    • Element Detail

      • named

        java.lang.String named
        The name of the environment variable to retrieve.
        Returns:
        the environment variable name; never blank
        See Also:
        System.getenv(String)
      • matches

        java.lang.String matches
        A regular expression that will be used to match against the retrieved value of the named() environment variable.
        Returns:
        the regular expression; never blank
        See Also:
        String.matches(String), Pattern