Annotation Type DisabledIfSystemProperty

    • 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() JVM system property.
      java.lang.String named
      The name of the JVM system property to retrieve.
    • Element Detail

      • named

        java.lang.String named
        The name of the JVM system property to retrieve.
        Returns:
        the system property name; never blank
        See Also:
        System.getProperty(String)
      • matches

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