public final class org.apache.avro.SchemaValidatorBuilder
  minor version: 0
  major version: 59
  flags: flags: (0x0031) ACC_PUBLIC, ACC_FINAL, ACC_SUPER
  this_class: org.apache.avro.SchemaValidatorBuilder
  super_class: java.lang.Object
{
  private org.apache.avro.SchemaValidationStrategy strategy;
    descriptor: Lorg/apache/avro/SchemaValidationStrategy;
    flags: (0x0002) ACC_PRIVATE

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.avro.SchemaValidatorBuilder this
         0: .line 26
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
            return
        end local 0 // org.apache.avro.SchemaValidatorBuilder this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/avro/SchemaValidatorBuilder;

  public org.apache.avro.SchemaValidatorBuilder strategy(org.apache.avro.SchemaValidationStrategy);
    descriptor: (Lorg/apache/avro/SchemaValidationStrategy;)Lorg/apache/avro/SchemaValidatorBuilder;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.apache.avro.SchemaValidatorBuilder this
        start local 1 // org.apache.avro.SchemaValidationStrategy strategy
         0: .line 30
            aload 0 /* this */
            aload 1 /* strategy */
            putfield org.apache.avro.SchemaValidatorBuilder.strategy:Lorg/apache/avro/SchemaValidationStrategy;
         1: .line 31
            aload 0 /* this */
            areturn
        end local 1 // org.apache.avro.SchemaValidationStrategy strategy
        end local 0 // org.apache.avro.SchemaValidatorBuilder this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0      this  Lorg/apache/avro/SchemaValidatorBuilder;
            0    2     1  strategy  Lorg/apache/avro/SchemaValidationStrategy;
    MethodParameters:
          Name  Flags
      strategy  

  public org.apache.avro.SchemaValidatorBuilder canReadStrategy();
    descriptor: ()Lorg/apache/avro/SchemaValidatorBuilder;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.apache.avro.SchemaValidatorBuilder this
         0: .line 39
            aload 0 /* this */
            new org.apache.avro.ValidateCanRead
            dup
            invokespecial org.apache.avro.ValidateCanRead.<init>:()V
            putfield org.apache.avro.SchemaValidatorBuilder.strategy:Lorg/apache/avro/SchemaValidationStrategy;
         1: .line 40
            aload 0 /* this */
            areturn
        end local 0 // org.apache.avro.SchemaValidatorBuilder this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/apache/avro/SchemaValidatorBuilder;

  public org.apache.avro.SchemaValidatorBuilder canBeReadStrategy();
    descriptor: ()Lorg/apache/avro/SchemaValidatorBuilder;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.apache.avro.SchemaValidatorBuilder this
         0: .line 48
            aload 0 /* this */
            new org.apache.avro.ValidateCanBeRead
            dup
            invokespecial org.apache.avro.ValidateCanBeRead.<init>:()V
            putfield org.apache.avro.SchemaValidatorBuilder.strategy:Lorg/apache/avro/SchemaValidationStrategy;
         1: .line 49
            aload 0 /* this */
            areturn
        end local 0 // org.apache.avro.SchemaValidatorBuilder this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/apache/avro/SchemaValidatorBuilder;

  public org.apache.avro.SchemaValidatorBuilder mutualReadStrategy();
    descriptor: ()Lorg/apache/avro/SchemaValidatorBuilder;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.apache.avro.SchemaValidatorBuilder this
         0: .line 57
            aload 0 /* this */
            new org.apache.avro.ValidateMutualRead
            dup
            invokespecial org.apache.avro.ValidateMutualRead.<init>:()V
            putfield org.apache.avro.SchemaValidatorBuilder.strategy:Lorg/apache/avro/SchemaValidationStrategy;
         1: .line 58
            aload 0 /* this */
            areturn
        end local 0 // org.apache.avro.SchemaValidatorBuilder this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/apache/avro/SchemaValidatorBuilder;

  public org.apache.avro.SchemaValidator validateLatest();
    descriptor: ()Lorg/apache/avro/SchemaValidator;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.apache.avro.SchemaValidatorBuilder this
         0: .line 62
            aload 0 /* this */
            invokevirtual org.apache.avro.SchemaValidatorBuilder.valid:()V
         1: .line 63
            new org.apache.avro.ValidateLatest
            dup
            aload 0 /* this */
            getfield org.apache.avro.SchemaValidatorBuilder.strategy:Lorg/apache/avro/SchemaValidationStrategy;
            invokespecial org.apache.avro.ValidateLatest.<init>:(Lorg/apache/avro/SchemaValidationStrategy;)V
            areturn
        end local 0 // org.apache.avro.SchemaValidatorBuilder this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/apache/avro/SchemaValidatorBuilder;

  public org.apache.avro.SchemaValidator validateAll();
    descriptor: ()Lorg/apache/avro/SchemaValidator;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.apache.avro.SchemaValidatorBuilder this
         0: .line 67
            aload 0 /* this */
            invokevirtual org.apache.avro.SchemaValidatorBuilder.valid:()V
         1: .line 68
            new org.apache.avro.ValidateAll
            dup
            aload 0 /* this */
            getfield org.apache.avro.SchemaValidatorBuilder.strategy:Lorg/apache/avro/SchemaValidationStrategy;
            invokespecial org.apache.avro.ValidateAll.<init>:(Lorg/apache/avro/SchemaValidationStrategy;)V
            areturn
        end local 0 // org.apache.avro.SchemaValidatorBuilder this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/apache/avro/SchemaValidatorBuilder;

  private void valid();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.apache.avro.SchemaValidatorBuilder this
         0: .line 72
            aload 0 /* this */
            getfield org.apache.avro.SchemaValidatorBuilder.strategy:Lorg/apache/avro/SchemaValidationStrategy;
            ifnonnull 2
         1: .line 73
            new org.apache.avro.AvroRuntimeException
            dup
            ldc "SchemaValidationStrategy not specified in builder"
            invokespecial org.apache.avro.AvroRuntimeException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 75
      StackMap locals:
      StackMap stack:
            return
        end local 0 // org.apache.avro.SchemaValidatorBuilder this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/apache/avro/SchemaValidatorBuilder;
}
SourceFile: "SchemaValidatorBuilder.java"