public class io.ebeaninternal.server.core.CacheOptions
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: io.ebeaninternal.server.core.CacheOptions
  super_class: java.lang.Object
{
  public static final io.ebeaninternal.server.core.CacheOptions NO_CACHING;
    descriptor: Lio/ebeaninternal/server/core/CacheOptions;
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL

  public static final io.ebeaninternal.server.core.CacheOptions INVALIDATE_QUERY_CACHE;
    descriptor: Lio/ebeaninternal/server/core/CacheOptions;
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL

  private final boolean invalidateQueryCache;
    descriptor: Z
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final boolean enableBeanCache;
    descriptor: Z
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final boolean enableQueryCache;
    descriptor: Z
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final boolean readOnly;
    descriptor: Z
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final java.lang.String[] naturalKey;
    descriptor: [Ljava/lang/String;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=3, locals=0, args_size=0
         0: .line 13
            new io.ebeaninternal.server.core.CacheOptions
            dup
            invokespecial io.ebeaninternal.server.core.CacheOptions.<init>:()V
            putstatic io.ebeaninternal.server.core.CacheOptions.NO_CACHING:Lio/ebeaninternal/server/core/CacheOptions;
         1: .line 15
            new io.ebeaninternal.server.core.CacheOptions
            dup
            iconst_1
            invokespecial io.ebeaninternal.server.core.CacheOptions.<init>:(Z)V
            putstatic io.ebeaninternal.server.core.CacheOptions.INVALIDATE_QUERY_CACHE:Lio/ebeaninternal/server/core/CacheOptions;
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  private void <init>();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // io.ebeaninternal.server.core.CacheOptions this
         0: .line 26
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 27
            aload 0 /* this */
            iconst_0
            putfield io.ebeaninternal.server.core.CacheOptions.invalidateQueryCache:Z
         2: .line 28
            aload 0 /* this */
            iconst_0
            putfield io.ebeaninternal.server.core.CacheOptions.enableBeanCache:Z
         3: .line 29
            aload 0 /* this */
            iconst_0
            putfield io.ebeaninternal.server.core.CacheOptions.enableQueryCache:Z
         4: .line 30
            aload 0 /* this */
            iconst_0
            putfield io.ebeaninternal.server.core.CacheOptions.readOnly:Z
         5: .line 31
            aload 0 /* this */
            aconst_null
            putfield io.ebeaninternal.server.core.CacheOptions.naturalKey:[Ljava/lang/String;
         6: .line 32
            return
        end local 0 // io.ebeaninternal.server.core.CacheOptions this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lio/ebeaninternal/server/core/CacheOptions;

  private void <init>(boolean);
    descriptor: (Z)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.ebeaninternal.server.core.CacheOptions this
        start local 1 // boolean invalidateQueryCache
         0: .line 37
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 38
            aload 0 /* this */
            iload 1 /* invalidateQueryCache */
            putfield io.ebeaninternal.server.core.CacheOptions.invalidateQueryCache:Z
         2: .line 39
            aload 0 /* this */
            iconst_0
            putfield io.ebeaninternal.server.core.CacheOptions.enableBeanCache:Z
         3: .line 40
            aload 0 /* this */
            iconst_0
            putfield io.ebeaninternal.server.core.CacheOptions.enableQueryCache:Z
         4: .line 41
            aload 0 /* this */
            iconst_0
            putfield io.ebeaninternal.server.core.CacheOptions.readOnly:Z
         5: .line 42
            aload 0 /* this */
            aconst_null
            putfield io.ebeaninternal.server.core.CacheOptions.naturalKey:[Ljava/lang/String;
         6: .line 43
            return
        end local 1 // boolean invalidateQueryCache
        end local 0 // io.ebeaninternal.server.core.CacheOptions this
      LocalVariableTable:
        Start  End  Slot                  Name  Signature
            0    7     0                  this  Lio/ebeaninternal/server/core/CacheOptions;
            0    7     1  invalidateQueryCache  Z
    MethodParameters:
                      Name  Flags
      invalidateQueryCache  

  public void <init>(io.ebean.annotation.Cache, java.lang.String[]);
    descriptor: (Lio/ebean/annotation/Cache;[Ljava/lang/String;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // io.ebeaninternal.server.core.CacheOptions this
        start local 1 // io.ebean.annotation.Cache cache
        start local 2 // java.lang.String[] naturalKey
         0: .line 48
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 49
            aload 0 /* this */
            iconst_0
            putfield io.ebeaninternal.server.core.CacheOptions.invalidateQueryCache:Z
         2: .line 50
            aload 0 /* this */
            aload 1 /* cache */
            invokeinterface io.ebean.annotation.Cache.enableBeanCache:()Z
            putfield io.ebeaninternal.server.core.CacheOptions.enableBeanCache:Z
         3: .line 51
            aload 0 /* this */
            aload 1 /* cache */
            invokeinterface io.ebean.annotation.Cache.enableQueryCache:()Z
            putfield io.ebeaninternal.server.core.CacheOptions.enableQueryCache:Z
         4: .line 52
            aload 0 /* this */
            aload 1 /* cache */
            invokeinterface io.ebean.annotation.Cache.readOnly:()Z
            putfield io.ebeaninternal.server.core.CacheOptions.readOnly:Z
         5: .line 53
            aload 0 /* this */
            aload 2 /* naturalKey */
            putfield io.ebeaninternal.server.core.CacheOptions.naturalKey:[Ljava/lang/String;
         6: .line 54
            return
        end local 2 // java.lang.String[] naturalKey
        end local 1 // io.ebean.annotation.Cache cache
        end local 0 // io.ebeaninternal.server.core.CacheOptions this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    7     0        this  Lio/ebeaninternal/server/core/CacheOptions;
            0    7     1       cache  Lio/ebean/annotation/Cache;
            0    7     2  naturalKey  [Ljava/lang/String;
    MethodParameters:
            Name  Flags
      cache       
      naturalKey  

  public boolean isInvalidateQueryCache();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.ebeaninternal.server.core.CacheOptions this
         0: .line 61
            aload 0 /* this */
            getfield io.ebeaninternal.server.core.CacheOptions.invalidateQueryCache:Z
            ireturn
        end local 0 // io.ebeaninternal.server.core.CacheOptions this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/ebeaninternal/server/core/CacheOptions;

  public boolean isEnableBeanCache();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.ebeaninternal.server.core.CacheOptions this
         0: .line 68
            aload 0 /* this */
            getfield io.ebeaninternal.server.core.CacheOptions.enableBeanCache:Z
            ireturn
        end local 0 // io.ebeaninternal.server.core.CacheOptions this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/ebeaninternal/server/core/CacheOptions;

  public boolean isEnableQueryCache();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.ebeaninternal.server.core.CacheOptions this
         0: .line 75
            aload 0 /* this */
            getfield io.ebeaninternal.server.core.CacheOptions.enableQueryCache:Z
            ireturn
        end local 0 // io.ebeaninternal.server.core.CacheOptions this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/ebeaninternal/server/core/CacheOptions;

  public boolean isReadOnly();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.ebeaninternal.server.core.CacheOptions this
         0: .line 82
            aload 0 /* this */
            getfield io.ebeaninternal.server.core.CacheOptions.readOnly:Z
            ireturn
        end local 0 // io.ebeaninternal.server.core.CacheOptions this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/ebeaninternal/server/core/CacheOptions;

  public java.lang.String[] getNaturalKey();
    descriptor: ()[Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.ebeaninternal.server.core.CacheOptions this
         0: .line 89
            aload 0 /* this */
            getfield io.ebeaninternal.server.core.CacheOptions.naturalKey:[Ljava/lang/String;
            areturn
        end local 0 // io.ebeaninternal.server.core.CacheOptions this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/ebeaninternal/server/core/CacheOptions;
}
SourceFile: "CacheOptions.java"