Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 376 for Otherwise (0.08 sec)

  1. src/main/java/org/codelibs/core/lang/ModifierUtil.java

         */
        public static boolean isPublicStaticFinal(final int modifier) {
            return isPublic(modifier) && isStatic(modifier) && isFinal(modifier);
        }
    
        /**
         * Checks if the specified modifier is public.
         *
         * @param modifier
         *            the modifier to check
         * @return true if public, false otherwise
         */
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 5.3K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/pager/RoleTypePager.java

        /**
         * Checks if a previous page exists.
         * @return true if a previous page exists, false otherwise.
         */
        public boolean isExistPrePage() {
            return existPrePage;
        }
    
        /**
         * Sets whether a previous page exists.
         * @param existPrePage true if a previous page exists, false otherwise.
         */
        public void setExistPrePage(final boolean existPrePage) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 6.2K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/core/lang/ObjectUtil.java

         * @return t if not <code>null</code>, otherwise defaultValue
         */
        public static <T> T defaultValue(final T t, final T defaultValue) {
            return t == null ? defaultValue : t;
        }
    
        /**
         * Returns true if the two objects are not equal.
         *
         * @param o1 the first object
         * @param o2 the second object
         * @return true if not equal, false otherwise
         */
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 3K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/core/beans/MethodDesc.java

         */
        Class<?> getValueClassOfMap(int index);
    
        /**
         * Returns the element type if the return type of the method is a parameterized {@link Collection}.
         *
         * @return the element type if the return type of the method is a parameterized {@link Collection}, otherwise {@literal null}
         */
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sat May 10 01:32:17 UTC 2025
    - 5.9K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/pager/RelatedContentPager.java

         * Checks if a previous page exists.
         *
         * @return true if previous page exists, false otherwise
         */
        public boolean isExistPrePage() {
            return existPrePage;
        }
    
        /**
         * Sets whether a previous page exists.
         *
         * @param existPrePage true if previous page exists, false otherwise
         */
        public void setExistPrePage(final boolean existPrePage) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 6.8K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/pager/FileConfigPager.java

         *
         * @return true if a previous page exists, false otherwise
         */
        public boolean isExistPrePage() {
            return existPrePage;
        }
    
        /**
         * Sets the flag indicating if a previous page exists.
         *
         * @param existPrePage true if a previous page exists, false otherwise
         */
        public void setExistPrePage(final boolean existPrePage) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 7.3K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/pager/RelatedQueryPager.java

         *
         * @return true if a previous page exists, false otherwise
         */
        public boolean isExistPrePage() {
            return existPrePage;
        }
    
        /**
         * Sets the flag indicating whether a previous page exists.
         *
         * @param existPrePage true if a previous page exists, false otherwise
         */
        public void setExistPrePage(final boolean existPrePage) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 7.2K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/pager/DataConfigPager.java

         *
         * @return true if there is a previous page, false otherwise
         */
        public boolean isExistPrePage() {
            return existPrePage;
        }
    
        /**
         * Sets whether there is a previous page available.
         *
         * @param existPrePage true if there is a previous page, false otherwise
         */
        public void setExistPrePage(final boolean existPrePage) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 7.6K bytes
    - Viewed (0)
  9. LICENSES/vendor/github.com/containerd/errdefs/pkg/LICENSE

          for any such Derivative Works as a whole, provided Your use,
          reproduction, and distribution of the Work otherwise complies with
          the conditions stated in this License.
    
       5. Submission of Contributions. Unless You explicitly state otherwise,
          any Contribution intentionally submitted for inclusion in the Work
          by You to the Licensor shall be under the terms and conditions of
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Wed Mar 05 11:36:39 UTC 2025
    - 10.7K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/core/beans/PropertyDesc.java

         *
         * @return the information if this property is parameterized, otherwise {@literal null}
         */
        ParameterizedClassDesc getParameterizedClassDesc();
    
        /**
         * Returns the element type if this property is a parameterized {@link Collection}.
         *
         * @return the element type if this property is a parameterized {@link Collection}, otherwise {@literal null}
         */
        Class<?> getElementClassOfCollection();
    
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sat May 10 01:32:17 UTC 2025
    - 4.3K bytes
    - Viewed (0)
Back to top