Interface LayerOrBuilder

  • All Superinterfaces:
    com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder
    All Known Implementing Classes:
    Layer, Layer.Builder

    public interface LayerOrBuilder
    extends com.google.protobuf.MessageOrBuilder
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      String getArguments()
      The recovered arguments to the Dockerfile directive.
      com.google.protobuf.ByteString getArgumentsBytes()
      The recovered arguments to the Dockerfile directive.
      Layer.Directive getDirective()
      Required.
      int getDirectiveValue()
      Required.
      • Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

        isInitialized
      • Methods inherited from interface com.google.protobuf.MessageOrBuilder

        findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
    • Method Detail

      • getDirectiveValue

        int getDirectiveValue()
         Required. The recovered Dockerfile directive used to construct this layer.
         
        .grafeas.v1beta1.image.Layer.Directive directive = 1;
        Returns:
        The enum numeric value on the wire for directive.
      • getDirective

        Layer.Directive getDirective()
         Required. The recovered Dockerfile directive used to construct this layer.
         
        .grafeas.v1beta1.image.Layer.Directive directive = 1;
        Returns:
        The directive.
      • getArguments

        String getArguments()
         The recovered arguments to the Dockerfile directive.
         
        string arguments = 2;
        Returns:
        The arguments.
      • getArgumentsBytes

        com.google.protobuf.ByteString getArgumentsBytes()
         The recovered arguments to the Dockerfile directive.
         
        string arguments = 2;
        Returns:
        The bytes for arguments.