- Sort Score
- Result 10 results
- Languages All
Results 91 - 100 of 423 for serialVersionUID (0.11 sec)
-
src/main/java/org/codelibs/fess/opensearch/log/allcommon/EsSqlClause.java
import org.dbflute.cbean.sqlclause.AbstractSqlClause; import org.dbflute.dbway.DBWay; /** * @author ESFlute (using FreeGen) */ public class EsSqlClause extends AbstractSqlClause { private static final long serialVersionUID = 1L; public EsSqlClause(String tableDbName) { super(tableDbName); } @Override public void lockForUpdate() { } @Override public DBWay dbway() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 2K bytes - Viewed (0) -
src/main/java/org/codelibs/core/exception/BeanFieldSetAccessibleFailureException.java
import java.lang.reflect.Field; /** * Signals that a field could not be made accessible. */ public class BeanFieldSetAccessibleFailureException extends ClRuntimeException { private static final long serialVersionUID = 1L; /** * The target class. */ protected final Class<?> targetClass; /** * The target field. */ protected final transient Field targetField; /**
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat Jul 05 00:11:05 UTC 2025 - 1.9K bytes - Viewed (0) -
src/main/java/org/codelibs/core/exception/BeanMethodSetAccessibleFailureException.java
import java.lang.reflect.Method; /** * Signals that a method could not be made accessible. */ public class BeanMethodSetAccessibleFailureException extends ClRuntimeException { private static final long serialVersionUID = 1L; /** * The target class. */ protected final Class<?> targetClass; /** * The target method. */ protected final transient Method targetMethod; /**
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat Jul 05 00:11:05 UTC 2025 - 1.9K bytes - Viewed (0) -
src/main/java/org/codelibs/core/exception/PropertyNotFoundRuntimeException.java
/** * Exception thrown when a property cannot be found. * * @author higa * */ public class PropertyNotFoundRuntimeException extends ClRuntimeException { private static final long serialVersionUID = -5177019197796206774L; /** * The target class. */ private final Class<?> targetClass; /** * The name of the property. */ private final String propertyName;
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat Jul 05 00:11:05 UTC 2025 - 1.8K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/base/SuppliersTest.java
@GwtIncompatible @J2ktIncompatible private static final long serialVersionUID = 0L; } static class SerializableThrowingSupplier extends ThrowingSupplier implements Serializable { @GwtIncompatible @J2ktIncompatible private static final long serialVersionUID = 0L; } static void checkMemoize(CountingSupplier countingSupplier, Supplier<Integer> memoizedSupplier) {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 17.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/DictionaryException.java
* reading, writing, parsing, or other dictionary-related operations. */ public class DictionaryException extends FessSystemException { /** Serial version UID for serialization. */ private static final long serialVersionUID = 1L; /** * Creates a new DictionaryException with the specified message and cause. * * @param message the detail message * @param cause the underlying cause of the exception */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/exception/StorageException.java
* It can be used to wrap underlying storage exceptions, providing a * consistent error handling mechanism for storage operations. */ public class StorageException extends FessSystemException { private static final long serialVersionUID = 1L; /** * Constructs a new storage exception with the specified detail message and cause. * * @param message The detail message. * @param cause The cause of the exception. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.5K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/collect/testing/features/ConflictingRequirementsException.java
return source; } @Override public String getMessage() { return super.getMessage() + " (source: " + source + ")"; } @GwtIncompatible @J2ktIncompatible private static final long serialVersionUID = 0;
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed May 14 19:40:47 UTC 2025 - 1.6K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/DiscreteDomain.java
return INSTANCE; } @Override public String toString() { return "DiscreteDomain.integers()"; } @GwtIncompatible @J2ktIncompatible private static final long serialVersionUID = 0; } /** * Returns the discrete domain for values of type {@code Long}. * * <p>This method always returns the same object. That object is serializable; deserializing it
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Feb 13 17:34:21 UTC 2025 - 10.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/exception/FessUserNotFoundException.java
*/ public class FessUserNotFoundException extends FessSystemException { /** Serial version UID for serialization compatibility */ private static final long serialVersionUID = 1L; /** * Constructs a new FessUserNotFoundException with the specified username. * * @param username the username that was not found */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.3K bytes - Viewed (0)