Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for References (0.17 sec)

  1. guava/src/com/google/common/base/Absent.java

    import com.google.common.annotations.GwtCompatible;
    import java.util.Collections;
    import java.util.Set;
    import javax.annotation.CheckForNull;
    
    /** Implementation of an {@link Optional} not containing a reference. */
    @GwtCompatible
    @ElementTypesAreNonnullByDefault
    final class Absent<T> extends Optional<T> {
      static final Absent<Object> INSTANCE = new Absent<>();
    
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Mon May 17 14:07:47 GMT 2021
    - 2.5K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/base/Absent.java

    import com.google.common.annotations.GwtCompatible;
    import java.util.Collections;
    import java.util.Set;
    import javax.annotation.CheckForNull;
    
    /** Implementation of an {@link Optional} not containing a reference. */
    @GwtCompatible
    @ElementTypesAreNonnullByDefault
    final class Absent<T> extends Optional<T> {
      static final Absent<Object> INSTANCE = new Absent<>();
    
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon May 17 14:07:47 GMT 2021
    - 2.5K bytes
    - Viewed (0)
Back to top