- Sort Score
- Num 10 results
- Language All
Results 1 - 2 of 2 for isTransient (0.06 seconds)
-
src/main/java/org/codelibs/core/lang/ModifierUtil.java
* * @param field * the field to check * @return true if transient, false otherwise * @see #isTransient(int) */ public static boolean isTransient(final Field field) { return isTransient(field.getModifiers()); } /** * Checks if the specified modifier is transient. * * @param modifierCreated: Fri Apr 03 20:58:12 GMT 2026 - Last Modified: Thu Jul 31 08:16:49 GMT 2025 - 5.3K bytes - Click Count (0) -
android/guava/src/com/google/common/reflect/Invokable.java
final boolean isVolatile() { return Modifier.isVolatile(getModifiers()); } /** Returns true if the field is transient. */ final boolean isTransient() { return Modifier.isTransient(getModifiers()); } @Override public boolean equals(@Nullable Object obj) { if (obj instanceof Invokable) { Invokable<?, ?> that = (Invokable<?, ?>) obj;
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Mar 23 21:06:42 GMT 2026 - 18.5K bytes - Click Count (0)