Class SparsePermutationProto.Builder

  • All Implemented Interfaces:
    SparsePermutationProtoOrBuilder, com.google.protobuf.Message.Builder, com.google.protobuf.MessageLite.Builder, com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder, java.lang.Cloneable
    Enclosing class:
    SparsePermutationProto

    public static final class SparsePermutationProto.Builder
    extends com.google.protobuf.GeneratedMessageV3.Builder<SparsePermutationProto.Builder>
    implements SparsePermutationProtoOrBuilder
     A permutation of integers encoded as a list of cycles, hence the "sparse"
     format. The image of an element cycle[i] is cycle[(i + 1) % cycle_length].
     
    Protobuf type operations_research.sat.SparsePermutationProto
    • Method Detail

      • getDescriptor

        public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
      • internalGetFieldAccessorTable

        protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
        Specified by:
        internalGetFieldAccessorTable in class com.google.protobuf.GeneratedMessageV3.Builder<SparsePermutationProto.Builder>
      • clear

        public SparsePermutationProto.Builder clear()
        Specified by:
        clear in interface com.google.protobuf.Message.Builder
        Specified by:
        clear in interface com.google.protobuf.MessageLite.Builder
        Overrides:
        clear in class com.google.protobuf.GeneratedMessageV3.Builder<SparsePermutationProto.Builder>
      • getDescriptorForType

        public com.google.protobuf.Descriptors.Descriptor getDescriptorForType()
        Specified by:
        getDescriptorForType in interface com.google.protobuf.Message.Builder
        Specified by:
        getDescriptorForType in interface com.google.protobuf.MessageOrBuilder
        Overrides:
        getDescriptorForType in class com.google.protobuf.GeneratedMessageV3.Builder<SparsePermutationProto.Builder>
      • getDefaultInstanceForType

        public SparsePermutationProto getDefaultInstanceForType()
        Specified by:
        getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuilder
        Specified by:
        getDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilder
      • build

        public SparsePermutationProto build()
        Specified by:
        build in interface com.google.protobuf.Message.Builder
        Specified by:
        build in interface com.google.protobuf.MessageLite.Builder
      • buildPartial

        public SparsePermutationProto buildPartial()
        Specified by:
        buildPartial in interface com.google.protobuf.Message.Builder
        Specified by:
        buildPartial in interface com.google.protobuf.MessageLite.Builder
      • clone

        public SparsePermutationProto.Builder clone()
        Specified by:
        clone in interface com.google.protobuf.Message.Builder
        Specified by:
        clone in interface com.google.protobuf.MessageLite.Builder
        Overrides:
        clone in class com.google.protobuf.GeneratedMessageV3.Builder<SparsePermutationProto.Builder>
      • setField

        public SparsePermutationProto.Builder setField​(com.google.protobuf.Descriptors.FieldDescriptor field,
                                                       java.lang.Object value)
        Specified by:
        setField in interface com.google.protobuf.Message.Builder
        Overrides:
        setField in class com.google.protobuf.GeneratedMessageV3.Builder<SparsePermutationProto.Builder>
      • clearField

        public SparsePermutationProto.Builder clearField​(com.google.protobuf.Descriptors.FieldDescriptor field)
        Specified by:
        clearField in interface com.google.protobuf.Message.Builder
        Overrides:
        clearField in class com.google.protobuf.GeneratedMessageV3.Builder<SparsePermutationProto.Builder>
      • clearOneof

        public SparsePermutationProto.Builder clearOneof​(com.google.protobuf.Descriptors.OneofDescriptor oneof)
        Specified by:
        clearOneof in interface com.google.protobuf.Message.Builder
        Overrides:
        clearOneof in class com.google.protobuf.GeneratedMessageV3.Builder<SparsePermutationProto.Builder>
      • setRepeatedField

        public SparsePermutationProto.Builder setRepeatedField​(com.google.protobuf.Descriptors.FieldDescriptor field,
                                                               int index,
                                                               java.lang.Object value)
        Specified by:
        setRepeatedField in interface com.google.protobuf.Message.Builder
        Overrides:
        setRepeatedField in class com.google.protobuf.GeneratedMessageV3.Builder<SparsePermutationProto.Builder>
      • addRepeatedField

        public SparsePermutationProto.Builder addRepeatedField​(com.google.protobuf.Descriptors.FieldDescriptor field,
                                                               java.lang.Object value)
        Specified by:
        addRepeatedField in interface com.google.protobuf.Message.Builder
        Overrides:
        addRepeatedField in class com.google.protobuf.GeneratedMessageV3.Builder<SparsePermutationProto.Builder>
      • isInitialized

        public final boolean isInitialized()
        Specified by:
        isInitialized in interface com.google.protobuf.MessageLiteOrBuilder
        Overrides:
        isInitialized in class com.google.protobuf.GeneratedMessageV3.Builder<SparsePermutationProto.Builder>
      • mergeFrom

        public SparsePermutationProto.Builder mergeFrom​(com.google.protobuf.CodedInputStream input,
                                                        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
                                                 throws java.io.IOException
        Specified by:
        mergeFrom in interface com.google.protobuf.Message.Builder
        Specified by:
        mergeFrom in interface com.google.protobuf.MessageLite.Builder
        Overrides:
        mergeFrom in class com.google.protobuf.AbstractMessage.Builder<SparsePermutationProto.Builder>
        Throws:
        java.io.IOException
      • getSupportList

        public java.util.List<java.lang.Integer> getSupportList()
         Each cycle is listed one after the other in the support field.
         The size of each cycle is given (in order) in the cycle_sizes field.
         
        repeated int32 support = 1;
        Specified by:
        getSupportList in interface SparsePermutationProtoOrBuilder
        Returns:
        A list containing the support.
      • getSupportCount

        public int getSupportCount()
         Each cycle is listed one after the other in the support field.
         The size of each cycle is given (in order) in the cycle_sizes field.
         
        repeated int32 support = 1;
        Specified by:
        getSupportCount in interface SparsePermutationProtoOrBuilder
        Returns:
        The count of support.
      • getSupport

        public int getSupport​(int index)
         Each cycle is listed one after the other in the support field.
         The size of each cycle is given (in order) in the cycle_sizes field.
         
        repeated int32 support = 1;
        Specified by:
        getSupport in interface SparsePermutationProtoOrBuilder
        Parameters:
        index - The index of the element to return.
        Returns:
        The support at the given index.
      • setSupport

        public SparsePermutationProto.Builder setSupport​(int index,
                                                         int value)
         Each cycle is listed one after the other in the support field.
         The size of each cycle is given (in order) in the cycle_sizes field.
         
        repeated int32 support = 1;
        Parameters:
        index - The index to set the value at.
        value - The support to set.
        Returns:
        This builder for chaining.
      • addSupport

        public SparsePermutationProto.Builder addSupport​(int value)
         Each cycle is listed one after the other in the support field.
         The size of each cycle is given (in order) in the cycle_sizes field.
         
        repeated int32 support = 1;
        Parameters:
        value - The support to add.
        Returns:
        This builder for chaining.
      • addAllSupport

        public SparsePermutationProto.Builder addAllSupport​(java.lang.Iterable<? extends java.lang.Integer> values)
         Each cycle is listed one after the other in the support field.
         The size of each cycle is given (in order) in the cycle_sizes field.
         
        repeated int32 support = 1;
        Parameters:
        values - The support to add.
        Returns:
        This builder for chaining.
      • clearSupport

        public SparsePermutationProto.Builder clearSupport()
         Each cycle is listed one after the other in the support field.
         The size of each cycle is given (in order) in the cycle_sizes field.
         
        repeated int32 support = 1;
        Returns:
        This builder for chaining.
      • getCycleSizes

        public int getCycleSizes​(int index)
        repeated int32 cycle_sizes = 2;
        Specified by:
        getCycleSizes in interface SparsePermutationProtoOrBuilder
        Parameters:
        index - The index of the element to return.
        Returns:
        The cycleSizes at the given index.
      • setCycleSizes

        public SparsePermutationProto.Builder setCycleSizes​(int index,
                                                            int value)
        repeated int32 cycle_sizes = 2;
        Parameters:
        index - The index to set the value at.
        value - The cycleSizes to set.
        Returns:
        This builder for chaining.
      • addCycleSizes

        public SparsePermutationProto.Builder addCycleSizes​(int value)
        repeated int32 cycle_sizes = 2;
        Parameters:
        value - The cycleSizes to add.
        Returns:
        This builder for chaining.
      • addAllCycleSizes

        public SparsePermutationProto.Builder addAllCycleSizes​(java.lang.Iterable<? extends java.lang.Integer> values)
        repeated int32 cycle_sizes = 2;
        Parameters:
        values - The cycleSizes to add.
        Returns:
        This builder for chaining.
      • setUnknownFields

        public final SparsePermutationProto.Builder setUnknownFields​(com.google.protobuf.UnknownFieldSet unknownFields)
        Specified by:
        setUnknownFields in interface com.google.protobuf.Message.Builder
        Overrides:
        setUnknownFields in class com.google.protobuf.GeneratedMessageV3.Builder<SparsePermutationProto.Builder>
      • mergeUnknownFields

        public final SparsePermutationProto.Builder mergeUnknownFields​(com.google.protobuf.UnknownFieldSet unknownFields)
        Specified by:
        mergeUnknownFields in interface com.google.protobuf.Message.Builder
        Overrides:
        mergeUnknownFields in class com.google.protobuf.GeneratedMessageV3.Builder<SparsePermutationProto.Builder>