public interface org.springframework.data.domain.Page<T> extends org.springframework.data.domain.Slice<T>
  minor version: 0
  major version: 59
  flags: flags: (0x0601) ACC_PUBLIC, ACC_INTERFACE, ACC_ABSTRACT
  this_class: org.springframework.data.domain.Page
  super_class: java.lang.Object
{
  public static <T> org.springframework.data.domain.Page<T> empty();
    descriptor: ()Lorg/springframework/data/domain/Page;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=1, locals=0, args_size=0
         0: .line 37
            invokestatic org.springframework.data.domain.Pageable.unpaged:()Lorg/springframework/data/domain/Pageable;
            invokestatic org.springframework.data.domain.Page.empty:(Lorg/springframework/data/domain/Pageable;)Lorg/springframework/data/domain/Page;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
    Signature: <T:Ljava/lang/Object;>()Lorg/springframework/data/domain/Page<TT;>;

  public static <T> org.springframework.data.domain.Page<T> empty(org.springframework.data.domain.Pageable);
    descriptor: (Lorg/springframework/data/domain/Pageable;)Lorg/springframework/data/domain/Page;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=6, locals=1, args_size=1
        start local 0 // org.springframework.data.domain.Pageable pageable
         0: .line 48
            new org.springframework.data.domain.PageImpl
            dup
            invokestatic java.util.Collections.emptyList:()Ljava/util/List;
            aload 0 /* pageable */
            lconst_0
            invokespecial org.springframework.data.domain.PageImpl.<init>:(Ljava/util/List;Lorg/springframework/data/domain/Pageable;J)V
            areturn
        end local 0 // org.springframework.data.domain.Pageable pageable
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0  pageable  Lorg/springframework/data/domain/Pageable;
    Signature: <T:Ljava/lang/Object;>(Lorg/springframework/data/domain/Pageable;)Lorg/springframework/data/domain/Page<TT;>;
    MethodParameters:
          Name  Flags
      pageable  

  public abstract int getTotalPages();
    descriptor: ()I
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT

  public abstract long getTotalElements();
    descriptor: ()J
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT

  public abstract <U> org.springframework.data.domain.Page<U> map(java.util.function.Function<? super T, ? extends U>);
    descriptor: (Ljava/util/function/Function;)Lorg/springframework/data/domain/Page;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Signature: <U:Ljava/lang/Object;>(Ljava/util/function/Function<-TT;+TU;>;)Lorg/springframework/data/domain/Page<TU;>;
    MethodParameters:
           Name  Flags
      converter  

  public org.springframework.data.domain.Slice map(java.util.function.Function);
    descriptor: (Ljava/util/function/Function;)Lorg/springframework/data/domain/Slice;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast java.util.function.Function
            invokeinterface org.springframework.data.domain.Page.map:(Ljava/util/function/Function;)Lorg/springframework/data/domain/Page;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public org.springframework.data.util.Streamable map(java.util.function.Function);
    descriptor: (Ljava/util/function/Function;)Lorg/springframework/data/util/Streamable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast java.util.function.Function
            invokeinterface org.springframework.data.domain.Page.map:(Ljava/util/function/Function;)Lorg/springframework/data/domain/Page;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
}
Signature: <T:Ljava/lang/Object;>Ljava/lang/Object;Lorg/springframework/data/domain/Slice<TT;>;
SourceFile: "Page.java"