Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 5 of 5 for NotNull (0.04 seconds)

  1. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

         * @param propertyKey The key of the property. (NotNull)
         * @return The value of found property. (NotNull: if not found, exception)
         * @throws ConfigPropertyNotFoundException When the property is not found.
         */
        String get(String propertyKey);
    
        /**
         * Is the property true?
         * @param propertyKey The key of the property which is boolean type. (NotNull)
    Created: Sat Dec 20 09:19:18 GMT 2025
    - Last Modified: Sat Dec 13 02:21:17 GMT 2025
    - 525.7K bytes
    - Click Count (2)
  2. src/main/java/org/codelibs/fess/mylasta/direction/FessEnv.java

         * @param propertyKey The key of the property. (NotNull)
         * @return The value of found property. (NotNull: if not found, exception)
         * @throws ConfigPropertyNotFoundException When the property is not found.
         */
        String get(String propertyKey);
    
        /**
         * Is the property true?
         * @param propertyKey The key of the property which is boolean type. (NotNull)
    Created: Sat Dec 20 09:19:18 GMT 2025
    - Last Modified: Thu Nov 27 07:01:25 GMT 2025
    - 9.9K bytes
    - Click Count (0)
  3. .idea/misc.xml

              <item index="13" class="java.lang.String" itemvalue="org.eclipse.jdt.annotation.NonNull" />
              <item index="14" class="java.lang.String" itemvalue="org.jetbrains.annotations.NotNull" />
              <item index="15" class="java.lang.String" itemvalue="org.jspecify.annotations.NonNull" />
              <item index="16" class="java.lang.String" itemvalue="android.annotation.NonNull" />
            </list>
          </value>
    Created: Wed Dec 31 11:36:14 GMT 2025
    - Last Modified: Fri Dec 19 15:00:20 GMT 2025
    - 5.1K bytes
    - Click Count (0)
  4. build-logic-commons/code-quality-rules/src/main/resources/checkstyle/checkstyle.xml

                <!--
                    We prefer org.jspecify for nullability annotations.
                -->
                <property name="illegalClasses" value="org.jetbrains.annotations.Nullable,org.jetbrains.annotations.NotNull"/>
            </module>
    
            <!-- Naming -->
            <module name="ConstantName"/>
            <module name="LocalFinalVariableName"/>
            <module name="LocalVariableName"/>
            <module name="MemberName">
    Created: Wed Dec 31 11:36:14 GMT 2025
    - Last Modified: Thu Dec 11 10:24:25 GMT 2025
    - 6.6K bytes
    - Click Count (0)
  5. src/main/java/org/codelibs/fess/mylasta/action/FessLabels.java

        public static final String LABELS_LOGIN_UPDATE = "{labels.login.update}";
    
        /**
         * Assert the property is not null.
         * @param property The value of the property. (NotNull)
         */
        protected void assertPropertyNotNull(String property) {
            if (property == null) {
                String msg = "The argument 'property' for message should not be null.";
    Created: Sat Dec 20 09:19:18 GMT 2025
    - Last Modified: Sat Dec 13 02:21:17 GMT 2025
    - 156.4K bytes
    - Click Count (0)
Back to Top