Search Options

Results per page
Sort
Preferred Languages
Advance

Results 331 - 340 of 488 for serialVersionUID (0.16 sec)

  1. src/main/java/org/codelibs/fess/app/pager/PathMapPager.java

     */
    public class PathMapPager implements Serializable {
    
        /**
         * Default constructor.
         */
        public PathMapPager() {
            // Default constructor
        }
    
        private static final long serialVersionUID = 1L;
    
        /** Default page size. */
        public static final int DEFAULT_PAGE_SIZE = 20;
    
        /** Default current page number. */
        public static final int DEFAULT_CURRENT_PAGE_NUMBER = 1;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.9K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/pager/RolePager.java

     *
     */
    public class RolePager implements Serializable {
    
        /**
         * Constructor.
         */
        public RolePager() {
            super();
        }
    
        private static final long serialVersionUID = 1L;
    
        /**
         * Default page size for pagination.
         */
        public static final int DEFAULT_PAGE_SIZE = 20;
    
        /**
         * Default current page number for pagination.
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.8K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/pager/StopwordsPager.java

    public class StopwordsPager implements Serializable {
    
        /**
         * Constructs a new pager for stopwords.
         */
        public StopwordsPager() {
            // do nothing
        }
    
        private static final long serialVersionUID = 1L;
    
        /** The total number of records. */
        private int allRecordCount;
    
        /** The total number of pages. */
        private int allPageCount;
    
        /** A flag indicating if a previous page exists. */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.6K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/AbstractListMultimap.java

       */
      @Override
      public boolean equals(@Nullable Object object) {
        return super.equals(object);
      }
    
      @GwtIncompatible @J2ktIncompatible   private static final long serialVersionUID = 6588350623831699109L;
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Apr 12 15:07:59 UTC 2025
    - 4.6K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/util/concurrent/ExecutionError.java

       * provide a non-nullable {@code cause}, as many users expect to find one.
       */
      public ExecutionError(@Nullable Error cause) {
        super(cause);
      }
    
      @GwtIncompatible @J2ktIncompatible private static final long serialVersionUID = 0;
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Feb 13 17:34:21 UTC 2025
    - 4K bytes
    - Viewed (0)
  6. android/guava-tests/test/com/google/common/base/PredicatesTest.java

      /** Instantiable predicate with reasonable hashCode() and equals() methods. */
      static class IsOdd implements Predicate<@Nullable Integer>, Serializable {
        @GwtIncompatible @J2ktIncompatible     private static final long serialVersionUID = 0x150ddL;
    
        @Override
        public boolean apply(@Nullable Integer i) {
          return (i.intValue() & 1) == 1;
        }
    
        @Override
        public int hashCode() {
          return 0x150dd;
        }
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 32.2K bytes
    - Viewed (0)
  7. guava/src/com/google/common/collect/EnumMultiset.java

        enumConstants = type.getEnumConstants();
        counts = new int[enumConstants.length];
        Serialization.populateMultiset(this, stream);
      }
    
      @GwtIncompatible @J2ktIncompatible private static final long serialVersionUID = 0;
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 9.3K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/pager/RelatedContentPager.java

    public class RelatedContentPager implements Serializable {
    
        /**
         * Default constructor.
         */
        public RelatedContentPager() {
            // Default constructor
        }
    
        private static final long serialVersionUID = 1L;
    
        /** Default current page number constant. */
        public static final int DEFAULT_CURRENT_PAGE_NUMBER = 1;
    
        /** Total number of records across all pages. */
        private int allRecordCount;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 6.8K bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/fess/mylasta/action/FessUserBeanTest.java

        }
    
        // Test implementation of FessUser interface for testing
        private static class TestFessUser implements FessUser {
            private static final long serialVersionUID = 1L;
            private String name;
            private String[] roleNames = new String[0];
            private String[] groupNames = new String[0];
            private String[] permissions = new String[0];
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 11.6K bytes
    - Viewed (0)
  10. guava/src/com/google/common/collect/ImmutableMultimap.java

        @GwtIncompatible
            Object writeReplace() {
          return super.writeReplace();
        }
    
        @GwtIncompatible @J2ktIncompatible private static final long serialVersionUID = 0;
      }
    
      @GwtIncompatible @J2ktIncompatible private static final long serialVersionUID = 0;
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sun Aug 10 19:54:19 UTC 2025
    - 28.6K bytes
    - Viewed (0)
Back to top