Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
* If this field is present, the "substring" operation must be performed with the first element of this list as the start index,
* and the second element as the end index.
* If an operation is not NONE, it's applied _after_ this substring operation
*
* If this field is present, the "substring" operation must be performed with the first element of this list as the start index,
* and the second element as the end index.
* If an operation is not NONE, it's applied _after_ this substring operation
*
* If this field is present, the "substring" operation must be performed with the first element of this list as the start index,
* and the second element as the end index.
* If an operation is not NONE, it's applied _after_ this substring operation
*
* If this field is present, the "replaceAll" operation must be performed with the first element of this list as the code point
* of the character to replace, and the second element as the code point of the replacement character
*
* If this field is present, the "replaceAll" operation must be performed with the first element of this list as the code point
* of the character to replace, and the second element as the code point of the replacement character
*
* If this field is present, the "replaceAll" operation must be performed with the first element of this list as the code point
* of the character to replace, and the second element as the code point of the replacement character
*
*/
int getReplaceChar(int index);
}
/**
* Protobuf type {@code org.jetbrains.kotlin.metadata.jvm.StringTableTypes.Record}
*/
public static final class Record extends
org.jetbrains.kotlin.protobuf.GeneratedMessageLite implements
// @@protoc_insertion_point(message_implements:org.jetbrains.kotlin.metadata.jvm.StringTableTypes.Record)
RecordOrBuilder {
// Use Record.newBuilder() to construct.
private Record(org.jetbrains.kotlin.protobuf.GeneratedMessageLite.Builder builder) {
super(builder);
this.unknownFields = builder.getUnknownFields();
}
private Record(boolean noInit) { this.unknownFields = org.jetbrains.kotlin.protobuf.ByteString.EMPTY;}
private static final Record defaultInstance;
public static Record getDefaultInstance() {
return defaultInstance;
}
public Record getDefaultInstanceForType() {
return defaultInstance;
}
private final org.jetbrains.kotlin.protobuf.ByteString unknownFields;
private Record(
org.jetbrains.kotlin.protobuf.CodedInputStream input,
org.jetbrains.kotlin.protobuf.ExtensionRegistryLite extensionRegistry)
throws org.jetbrains.kotlin.protobuf.InvalidProtocolBufferException {
initFields();
int mutable_bitField0_ = 0;
org.jetbrains.kotlin.protobuf.ByteString.Output unknownFieldsOutput =
org.jetbrains.kotlin.protobuf.ByteString.newOutput();
org.jetbrains.kotlin.protobuf.CodedOutputStream unknownFieldsCodedOutput =
org.jetbrains.kotlin.protobuf.CodedOutputStream.newInstance(
unknownFieldsOutput, 1);
try {
boolean done = false;
while (!done) {
int tag = input.readTag();
switch (tag) {
case 0:
done = true;
break;
default: {
if (!parseUnknownField(input, unknownFieldsCodedOutput,
extensionRegistry, tag)) {
done = true;
}
break;
}
case 8: {
bitField0_ |= 0x00000001;
range_ = input.readInt32();
break;
}
case 16: {
bitField0_ |= 0x00000002;
predefinedIndex_ = input.readInt32();
break;
}
case 24: {
int rawValue = input.readEnum();
org.jetbrains.kotlin.metadata.jvm.JvmProtoBuf.StringTableTypes.Record.Operation value = org.jetbrains.kotlin.metadata.jvm.JvmProtoBuf.StringTableTypes.Record.Operation.valueOf(rawValue);
if (value == null) {
unknownFieldsCodedOutput.writeRawVarint32(tag);
unknownFieldsCodedOutput.writeRawVarint32(rawValue);
} else {
bitField0_ |= 0x00000008;
operation_ = value;
}
break;
}
case 32: {
if (!((mutable_bitField0_ & 0x00000010) == 0x00000010)) {
substringIndex_ = new java.util.ArrayList();
mutable_bitField0_ |= 0x00000010;
}
substringIndex_.add(input.readInt32());
break;
}
case 34: {
int length = input.readRawVarint32();
int limit = input.pushLimit(length);
if (!((mutable_bitField0_ & 0x00000010) == 0x00000010) && input.getBytesUntilLimit() > 0) {
substringIndex_ = new java.util.ArrayList();
mutable_bitField0_ |= 0x00000010;
}
while (input.getBytesUntilLimit() > 0) {
substringIndex_.add(input.readInt32());
}
input.popLimit(limit);
break;
}
case 40: {
if (!((mutable_bitField0_ & 0x00000020) == 0x00000020)) {
replaceChar_ = new java.util.ArrayList();
mutable_bitField0_ |= 0x00000020;
}
replaceChar_.add(input.readInt32());
break;
}
case 42: {
int length = input.readRawVarint32();
int limit = input.pushLimit(length);
if (!((mutable_bitField0_ & 0x00000020) == 0x00000020) && input.getBytesUntilLimit() > 0) {
replaceChar_ = new java.util.ArrayList();
mutable_bitField0_ |= 0x00000020;
}
while (input.getBytesUntilLimit() > 0) {
replaceChar_.add(input.readInt32());
}
input.popLimit(limit);
break;
}
case 50: {
org.jetbrains.kotlin.protobuf.ByteString bs = input.readBytes();
bitField0_ |= 0x00000004;
string_ = bs;
break;
}
}
}
} catch (org.jetbrains.kotlin.protobuf.InvalidProtocolBufferException e) {
throw e.setUnfinishedMessage(this);
} catch (java.io.IOException e) {
throw new org.jetbrains.kotlin.protobuf.InvalidProtocolBufferException(
e.getMessage()).setUnfinishedMessage(this);
} finally {
if (((mutable_bitField0_ & 0x00000010) == 0x00000010)) {
substringIndex_ = java.util.Collections.unmodifiableList(substringIndex_);
}
if (((mutable_bitField0_ & 0x00000020) == 0x00000020)) {
replaceChar_ = java.util.Collections.unmodifiableList(replaceChar_);
}
try {
unknownFieldsCodedOutput.flush();
} catch (java.io.IOException e) {
// Should not happen
} finally {
unknownFields = unknownFieldsOutput.toByteString();
}
makeExtensionsImmutable();
}
}
public static org.jetbrains.kotlin.protobuf.Parser PARSER =
new org.jetbrains.kotlin.protobuf.AbstractParser() {
public Record parsePartialFrom(
org.jetbrains.kotlin.protobuf.CodedInputStream input,
org.jetbrains.kotlin.protobuf.ExtensionRegistryLite extensionRegistry)
throws org.jetbrains.kotlin.protobuf.InvalidProtocolBufferException {
return new Record(input, extensionRegistry);
}
};
@java.lang.Override
public org.jetbrains.kotlin.protobuf.Parser getParserForType() {
return PARSER;
}
/**
* Protobuf enum {@code org.jetbrains.kotlin.metadata.jvm.StringTableTypes.Record.Operation}
*/
public enum Operation
implements org.jetbrains.kotlin.protobuf.Internal.EnumLite {
/**
* NONE = 0;
*/
NONE(0, 0),
/**
* INTERNAL_TO_CLASS_ID = 1;
*
*
*/
public static final int INTERNAL_TO_CLASS_ID_VALUE = 1;
/**
* DESC_TO_CLASS_ID = 2;
*
*
* substring(1, length - 1) and then replaceAll('$', '.')
* Ljava/util/Map$Entry; -> java/util/Map.Entry
*
*/
public static final int DESC_TO_CLASS_ID_VALUE = 2;
public final int getNumber() { return value; }
public static Operation valueOf(int value) {
switch (value) {
case 0: return NONE;
case 1: return INTERNAL_TO_CLASS_ID;
case 2: return DESC_TO_CLASS_ID;
default: return null;
}
}
public static org.jetbrains.kotlin.protobuf.Internal.EnumLiteMap
internalGetValueMap() {
return internalValueMap;
}
private static org.jetbrains.kotlin.protobuf.Internal.EnumLiteMap
internalValueMap =
new org.jetbrains.kotlin.protobuf.Internal.EnumLiteMap() {
public Operation findValueByNumber(int number) {
return Operation.valueOf(number);
}
};
private final int value;
private Operation(int index, int value) {
this.value = value;
}
// @@protoc_insertion_point(enum_scope:org.jetbrains.kotlin.metadata.jvm.StringTableTypes.Record.Operation)
}
private int bitField0_;
public static final int RANGE_FIELD_NUMBER = 1;
private int range_;
/**
* optional int32 range = 1 [default = 1];
*
*
* The number of times this record should be repeated; this is used to collapse identical subsequent records in the list
*
* The number of times this record should be repeated; this is used to collapse identical subsequent records in the list
*
*/
public int getRange() {
return range_;
}
public static final int PREDEFINED_INDEX_FIELD_NUMBER = 2;
private int predefinedIndex_;
/**
* optional int32 predefined_index = 2;
*
*
* Index of the predefined constant. If this field is present, the associated string is ignored
*
*/
public org.jetbrains.kotlin.metadata.jvm.JvmProtoBuf.StringTableTypes.Record.Operation getOperation() {
return operation_;
}
public static final int SUBSTRING_INDEX_FIELD_NUMBER = 4;
private java.util.List substringIndex_;
/**
* repeated int32 substring_index = 4 [packed = true];
*
*
* If this field is present, the "substring" operation must be performed with the first element of this list as the start index,
* and the second element as the end index.
* If an operation is not NONE, it's applied _after_ this substring operation
*
* If this field is present, the "substring" operation must be performed with the first element of this list as the start index,
* and the second element as the end index.
* If an operation is not NONE, it's applied _after_ this substring operation
*
*/
public int getSubstringIndexCount() {
return substringIndex_.size();
}
/**
* repeated int32 substring_index = 4 [packed = true];
*
*
* If this field is present, the "substring" operation must be performed with the first element of this list as the start index,
* and the second element as the end index.
* If an operation is not NONE, it's applied _after_ this substring operation
*
*/
public int getSubstringIndex(int index) {
return substringIndex_.get(index);
}
private int substringIndexMemoizedSerializedSize = -1;
public static final int REPLACE_CHAR_FIELD_NUMBER = 5;
private java.util.List replaceChar_;
/**
* repeated int32 replace_char = 5 [packed = true];
*
*
* If this field is present, the "replaceAll" operation must be performed with the first element of this list as the code point
* of the character to replace, and the second element as the code point of the replacement character
*
* If this field is present, the "replaceAll" operation must be performed with the first element of this list as the code point
* of the character to replace, and the second element as the code point of the replacement character
*
*/
public int getReplaceCharCount() {
return replaceChar_.size();
}
/**
* repeated int32 replace_char = 5 [packed = true];
*
*
* If this field is present, the "replaceAll" operation must be performed with the first element of this list as the code point
* of the character to replace, and the second element as the code point of the replacement character
*
*/
public int getReplaceChar(int index) {
return replaceChar_.get(index);
}
private int replaceCharMemoizedSerializedSize = -1;
private void initFields() {
range_ = 1;
predefinedIndex_ = 0;
string_ = "";
operation_ = org.jetbrains.kotlin.metadata.jvm.JvmProtoBuf.StringTableTypes.Record.Operation.NONE;
substringIndex_ = java.util.Collections.emptyList();
replaceChar_ = java.util.Collections.emptyList();
}
private byte memoizedIsInitialized = -1;
public final boolean isInitialized() {
byte isInitialized = memoizedIsInitialized;
if (isInitialized == 1) return true;
if (isInitialized == 0) return false;
memoizedIsInitialized = 1;
return true;
}
public void writeTo(org.jetbrains.kotlin.protobuf.CodedOutputStream output)
throws java.io.IOException {
getSerializedSize();
if (((bitField0_ & 0x00000001) == 0x00000001)) {
output.writeInt32(1, range_);
}
if (((bitField0_ & 0x00000002) == 0x00000002)) {
output.writeInt32(2, predefinedIndex_);
}
if (((bitField0_ & 0x00000008) == 0x00000008)) {
output.writeEnum(3, operation_.getNumber());
}
if (getSubstringIndexList().size() > 0) {
output.writeRawVarint32(34);
output.writeRawVarint32(substringIndexMemoizedSerializedSize);
}
for (int i = 0; i < substringIndex_.size(); i++) {
output.writeInt32NoTag(substringIndex_.get(i));
}
if (getReplaceCharList().size() > 0) {
output.writeRawVarint32(42);
output.writeRawVarint32(replaceCharMemoizedSerializedSize);
}
for (int i = 0; i < replaceChar_.size(); i++) {
output.writeInt32NoTag(replaceChar_.get(i));
}
if (((bitField0_ & 0x00000004) == 0x00000004)) {
output.writeBytes(6, getStringBytes());
}
output.writeRawBytes(unknownFields);
}
private int memoizedSerializedSize = -1;
public int getSerializedSize() {
int size = memoizedSerializedSize;
if (size != -1) return size;
size = 0;
if (((bitField0_ & 0x00000001) == 0x00000001)) {
size += org.jetbrains.kotlin.protobuf.CodedOutputStream
.computeInt32Size(1, range_);
}
if (((bitField0_ & 0x00000002) == 0x00000002)) {
size += org.jetbrains.kotlin.protobuf.CodedOutputStream
.computeInt32Size(2, predefinedIndex_);
}
if (((bitField0_ & 0x00000008) == 0x00000008)) {
size += org.jetbrains.kotlin.protobuf.CodedOutputStream
.computeEnumSize(3, operation_.getNumber());
}
{
int dataSize = 0;
for (int i = 0; i < substringIndex_.size(); i++) {
dataSize += org.jetbrains.kotlin.protobuf.CodedOutputStream
.computeInt32SizeNoTag(substringIndex_.get(i));
}
size += dataSize;
if (!getSubstringIndexList().isEmpty()) {
size += 1;
size += org.jetbrains.kotlin.protobuf.CodedOutputStream
.computeInt32SizeNoTag(dataSize);
}
substringIndexMemoizedSerializedSize = dataSize;
}
{
int dataSize = 0;
for (int i = 0; i < replaceChar_.size(); i++) {
dataSize += org.jetbrains.kotlin.protobuf.CodedOutputStream
.computeInt32SizeNoTag(replaceChar_.get(i));
}
size += dataSize;
if (!getReplaceCharList().isEmpty()) {
size += 1;
size += org.jetbrains.kotlin.protobuf.CodedOutputStream
.computeInt32SizeNoTag(dataSize);
}
replaceCharMemoizedSerializedSize = dataSize;
}
if (((bitField0_ & 0x00000004) == 0x00000004)) {
size += org.jetbrains.kotlin.protobuf.CodedOutputStream
.computeBytesSize(6, getStringBytes());
}
size += unknownFields.size();
memoizedSerializedSize = size;
return size;
}
private static final long serialVersionUID = 0L;
@java.lang.Override
protected java.lang.Object writeReplace()
throws java.io.ObjectStreamException {
return super.writeReplace();
}
public static org.jetbrains.kotlin.metadata.jvm.JvmProtoBuf.StringTableTypes.Record parseFrom(
org.jetbrains.kotlin.protobuf.ByteString data)
throws org.jetbrains.kotlin.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static org.jetbrains.kotlin.metadata.jvm.JvmProtoBuf.StringTableTypes.Record parseFrom(
org.jetbrains.kotlin.protobuf.ByteString data,
org.jetbrains.kotlin.protobuf.ExtensionRegistryLite extensionRegistry)
throws org.jetbrains.kotlin.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static org.jetbrains.kotlin.metadata.jvm.JvmProtoBuf.StringTableTypes.Record parseFrom(byte[] data)
throws org.jetbrains.kotlin.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static org.jetbrains.kotlin.metadata.jvm.JvmProtoBuf.StringTableTypes.Record parseFrom(
byte[] data,
org.jetbrains.kotlin.protobuf.ExtensionRegistryLite extensionRegistry)
throws org.jetbrains.kotlin.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static org.jetbrains.kotlin.metadata.jvm.JvmProtoBuf.StringTableTypes.Record parseFrom(java.io.InputStream input)
throws java.io.IOException {
return PARSER.parseFrom(input);
}
public static org.jetbrains.kotlin.metadata.jvm.JvmProtoBuf.StringTableTypes.Record parseFrom(
java.io.InputStream input,
org.jetbrains.kotlin.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return PARSER.parseFrom(input, extensionRegistry);
}
public static org.jetbrains.kotlin.metadata.jvm.JvmProtoBuf.StringTableTypes.Record parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return PARSER.parseDelimitedFrom(input);
}
public static org.jetbrains.kotlin.metadata.jvm.JvmProtoBuf.StringTableTypes.Record parseDelimitedFrom(
java.io.InputStream input,
org.jetbrains.kotlin.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return PARSER.parseDelimitedFrom(input, extensionRegistry);
}
public static org.jetbrains.kotlin.metadata.jvm.JvmProtoBuf.StringTableTypes.Record parseFrom(
org.jetbrains.kotlin.protobuf.CodedInputStream input)
throws java.io.IOException {
return PARSER.parseFrom(input);
}
public static org.jetbrains.kotlin.metadata.jvm.JvmProtoBuf.StringTableTypes.Record parseFrom(
org.jetbrains.kotlin.protobuf.CodedInputStream input,
org.jetbrains.kotlin.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return PARSER.parseFrom(input, extensionRegistry);
}
public static Builder newBuilder() { return Builder.create(); }
public Builder newBuilderForType() { return newBuilder(); }
public static Builder newBuilder(org.jetbrains.kotlin.metadata.jvm.JvmProtoBuf.StringTableTypes.Record prototype) {
return newBuilder().mergeFrom(prototype);
}
public Builder toBuilder() { return newBuilder(this); }
/**
* Protobuf type {@code org.jetbrains.kotlin.metadata.jvm.StringTableTypes.Record}
*/
public static final class Builder extends
org.jetbrains.kotlin.protobuf.GeneratedMessageLite.Builder<
org.jetbrains.kotlin.metadata.jvm.JvmProtoBuf.StringTableTypes.Record, Builder>
implements
// @@protoc_insertion_point(builder_implements:org.jetbrains.kotlin.metadata.jvm.StringTableTypes.Record)
org.jetbrains.kotlin.metadata.jvm.JvmProtoBuf.StringTableTypes.RecordOrBuilder {
// Construct using org.jetbrains.kotlin.metadata.jvm.JvmProtoBuf.StringTableTypes.Record.newBuilder()
private Builder() {
maybeForceBuilderInitialization();
}
private void maybeForceBuilderInitialization() {
}
private static Builder create() {
return new Builder();
}
public Builder clear() {
super.clear();
range_ = 1;
bitField0_ = (bitField0_ & ~0x00000001);
predefinedIndex_ = 0;
bitField0_ = (bitField0_ & ~0x00000002);
string_ = "";
bitField0_ = (bitField0_ & ~0x00000004);
operation_ = org.jetbrains.kotlin.metadata.jvm.JvmProtoBuf.StringTableTypes.Record.Operation.NONE;
bitField0_ = (bitField0_ & ~0x00000008);
substringIndex_ = java.util.Collections.emptyList();
bitField0_ = (bitField0_ & ~0x00000010);
replaceChar_ = java.util.Collections.emptyList();
bitField0_ = (bitField0_ & ~0x00000020);
return this;
}
public Builder clone() {
return create().mergeFrom(buildPartial());
}
public org.jetbrains.kotlin.metadata.jvm.JvmProtoBuf.StringTableTypes.Record getDefaultInstanceForType() {
return org.jetbrains.kotlin.metadata.jvm.JvmProtoBuf.StringTableTypes.Record.getDefaultInstance();
}
public org.jetbrains.kotlin.metadata.jvm.JvmProtoBuf.StringTableTypes.Record build() {
org.jetbrains.kotlin.metadata.jvm.JvmProtoBuf.StringTableTypes.Record result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
public org.jetbrains.kotlin.metadata.jvm.JvmProtoBuf.StringTableTypes.Record buildPartial() {
org.jetbrains.kotlin.metadata.jvm.JvmProtoBuf.StringTableTypes.Record result = new org.jetbrains.kotlin.metadata.jvm.JvmProtoBuf.StringTableTypes.Record(this);
int from_bitField0_ = bitField0_;
int to_bitField0_ = 0;
if (((from_bitField0_ & 0x00000001) == 0x00000001)) {
to_bitField0_ |= 0x00000001;
}
result.range_ = range_;
if (((from_bitField0_ & 0x00000002) == 0x00000002)) {
to_bitField0_ |= 0x00000002;
}
result.predefinedIndex_ = predefinedIndex_;
if (((from_bitField0_ & 0x00000004) == 0x00000004)) {
to_bitField0_ |= 0x00000004;
}
result.string_ = string_;
if (((from_bitField0_ & 0x00000008) == 0x00000008)) {
to_bitField0_ |= 0x00000008;
}
result.operation_ = operation_;
if (((bitField0_ & 0x00000010) == 0x00000010)) {
substringIndex_ = java.util.Collections.unmodifiableList(substringIndex_);
bitField0_ = (bitField0_ & ~0x00000010);
}
result.substringIndex_ = substringIndex_;
if (((bitField0_ & 0x00000020) == 0x00000020)) {
replaceChar_ = java.util.Collections.unmodifiableList(replaceChar_);
bitField0_ = (bitField0_ & ~0x00000020);
}
result.replaceChar_ = replaceChar_;
result.bitField0_ = to_bitField0_;
return result;
}
public Builder mergeFrom(org.jetbrains.kotlin.metadata.jvm.JvmProtoBuf.StringTableTypes.Record other) {
if (other == org.jetbrains.kotlin.metadata.jvm.JvmProtoBuf.StringTableTypes.Record.getDefaultInstance()) return this;
if (other.hasRange()) {
setRange(other.getRange());
}
if (other.hasPredefinedIndex()) {
setPredefinedIndex(other.getPredefinedIndex());
}
if (other.hasString()) {
bitField0_ |= 0x00000004;
string_ = other.string_;
}
if (other.hasOperation()) {
setOperation(other.getOperation());
}
if (!other.substringIndex_.isEmpty()) {
if (substringIndex_.isEmpty()) {
substringIndex_ = other.substringIndex_;
bitField0_ = (bitField0_ & ~0x00000010);
} else {
ensureSubstringIndexIsMutable();
substringIndex_.addAll(other.substringIndex_);
}
}
if (!other.replaceChar_.isEmpty()) {
if (replaceChar_.isEmpty()) {
replaceChar_ = other.replaceChar_;
bitField0_ = (bitField0_ & ~0x00000020);
} else {
ensureReplaceCharIsMutable();
replaceChar_.addAll(other.replaceChar_);
}
}
setUnknownFields(
getUnknownFields().concat(other.unknownFields));
return this;
}
public final boolean isInitialized() {
return true;
}
public Builder mergeFrom(
org.jetbrains.kotlin.protobuf.CodedInputStream input,
org.jetbrains.kotlin.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
org.jetbrains.kotlin.metadata.jvm.JvmProtoBuf.StringTableTypes.Record parsedMessage = null;
try {
parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
} catch (org.jetbrains.kotlin.protobuf.InvalidProtocolBufferException e) {
parsedMessage = (org.jetbrains.kotlin.metadata.jvm.JvmProtoBuf.StringTableTypes.Record) e.getUnfinishedMessage();
throw e;
} finally {
if (parsedMessage != null) {
mergeFrom(parsedMessage);
}
}
return this;
}
private int bitField0_;
private int range_ = 1;
/**
* optional int32 range = 1 [default = 1];
*
*
* The number of times this record should be repeated; this is used to collapse identical subsequent records in the list
*
* If this field is present, the "substring" operation must be performed with the first element of this list as the start index,
* and the second element as the end index.
* If an operation is not NONE, it's applied _after_ this substring operation
*
* If this field is present, the "substring" operation must be performed with the first element of this list as the start index,
* and the second element as the end index.
* If an operation is not NONE, it's applied _after_ this substring operation
*
*/
public int getSubstringIndexCount() {
return substringIndex_.size();
}
/**
* repeated int32 substring_index = 4 [packed = true];
*
*
* If this field is present, the "substring" operation must be performed with the first element of this list as the start index,
* and the second element as the end index.
* If an operation is not NONE, it's applied _after_ this substring operation
*
* If this field is present, the "substring" operation must be performed with the first element of this list as the start index,
* and the second element as the end index.
* If an operation is not NONE, it's applied _after_ this substring operation
*
*/
public Builder setSubstringIndex(
int index, int value) {
ensureSubstringIndexIsMutable();
substringIndex_.set(index, value);
return this;
}
/**
* repeated int32 substring_index = 4 [packed = true];
*
*
* If this field is present, the "substring" operation must be performed with the first element of this list as the start index,
* and the second element as the end index.
* If an operation is not NONE, it's applied _after_ this substring operation
*
* If this field is present, the "substring" operation must be performed with the first element of this list as the start index,
* and the second element as the end index.
* If an operation is not NONE, it's applied _after_ this substring operation
*
* If this field is present, the "substring" operation must be performed with the first element of this list as the start index,
* and the second element as the end index.
* If an operation is not NONE, it's applied _after_ this substring operation
*
* If this field is present, the "replaceAll" operation must be performed with the first element of this list as the code point
* of the character to replace, and the second element as the code point of the replacement character
*
* If this field is present, the "replaceAll" operation must be performed with the first element of this list as the code point
* of the character to replace, and the second element as the code point of the replacement character
*
*/
public int getReplaceCharCount() {
return replaceChar_.size();
}
/**
* repeated int32 replace_char = 5 [packed = true];
*
*
* If this field is present, the "replaceAll" operation must be performed with the first element of this list as the code point
* of the character to replace, and the second element as the code point of the replacement character
*
* If this field is present, the "replaceAll" operation must be performed with the first element of this list as the code point
* of the character to replace, and the second element as the code point of the replacement character
*
*/
public Builder setReplaceChar(
int index, int value) {
ensureReplaceCharIsMutable();
replaceChar_.set(index, value);
return this;
}
/**
* repeated int32 replace_char = 5 [packed = true];
*
*
* If this field is present, the "replaceAll" operation must be performed with the first element of this list as the code point
* of the character to replace, and the second element as the code point of the replacement character
*
* If this field is present, the "replaceAll" operation must be performed with the first element of this list as the code point
* of the character to replace, and the second element as the code point of the replacement character
*
* If this field is present, the "replaceAll" operation must be performed with the first element of this list as the code point
* of the character to replace, and the second element as the code point of the replacement character
*
*/
public Builder clearReplaceChar() {
replaceChar_ = java.util.Collections.emptyList();
bitField0_ = (bitField0_ & ~0x00000020);
return this;
}
// @@protoc_insertion_point(builder_scope:org.jetbrains.kotlin.metadata.jvm.StringTableTypes.Record)
}
static {
defaultInstance = new Record(true);
defaultInstance.initFields();
}
// @@protoc_insertion_point(class_scope:org.jetbrains.kotlin.metadata.jvm.StringTableTypes.Record)
}
public static final int RECORD_FIELD_NUMBER = 1;
private java.util.List record_;
/**
* repeated .org.jetbrains.kotlin.metadata.jvm.StringTableTypes.Record record = 1;
*/
public java.util.List getRecordList() {
return record_;
}
/**
* repeated .org.jetbrains.kotlin.metadata.jvm.StringTableTypes.Record record = 1;
*/
public java.util.List extends org.jetbrains.kotlin.metadata.jvm.JvmProtoBuf.StringTableTypes.RecordOrBuilder>
getRecordOrBuilderList() {
return record_;
}
/**
* repeated .org.jetbrains.kotlin.metadata.jvm.StringTableTypes.Record record = 1;
*/
public int getRecordCount() {
return record_.size();
}
/**
* repeated .org.jetbrains.kotlin.metadata.jvm.StringTableTypes.Record record = 1;
*/
public org.jetbrains.kotlin.metadata.jvm.JvmProtoBuf.StringTableTypes.Record getRecord(int index) {
return record_.get(index);
}
/**
* repeated .org.jetbrains.kotlin.metadata.jvm.StringTableTypes.Record record = 1;
*/
public org.jetbrains.kotlin.metadata.jvm.JvmProtoBuf.StringTableTypes.RecordOrBuilder getRecordOrBuilder(
int index) {
return record_.get(index);
}
public static final int LOCAL_NAME_FIELD_NUMBER = 5;
private java.util.List localName_;
/**
* repeated int32 local_name = 5 [packed = true];
*
*
* Indices of strings which are names of local classes or anonymous objects
*
* The delegate field of delegated properties may be optimized out; `getDelegate` should
* then call this method instead
*
*/
public Builder clearDelegateMethod() {
delegateMethod_ = org.jetbrains.kotlin.metadata.jvm.JvmProtoBuf.JvmMethodSignature.getDefaultInstance();
bitField0_ = (bitField0_ & ~0x00000010);
return this;
}
// @@protoc_insertion_point(builder_scope:org.jetbrains.kotlin.metadata.jvm.JvmPropertySignature)
}
static {
defaultInstance = new JvmPropertySignature(true);
defaultInstance.initFields();
}
// @@protoc_insertion_point(class_scope:org.jetbrains.kotlin.metadata.jvm.JvmPropertySignature)
}
public static final int CONSTRUCTOR_SIGNATURE_FIELD_NUMBER = 100;
/**
* extend .org.jetbrains.kotlin.metadata.Constructor { ... }
*/
public static final
org.jetbrains.kotlin.protobuf.GeneratedMessageLite.GeneratedExtension<
org.jetbrains.kotlin.metadata.ProtoBuf.Constructor,
org.jetbrains.kotlin.metadata.jvm.JvmProtoBuf.JvmMethodSignature> constructorSignature = org.jetbrains.kotlin.protobuf.GeneratedMessageLite
.newSingularGeneratedExtension(
org.jetbrains.kotlin.metadata.ProtoBuf.Constructor.getDefaultInstance(),
org.jetbrains.kotlin.metadata.jvm.JvmProtoBuf.JvmMethodSignature.getDefaultInstance(),
org.jetbrains.kotlin.metadata.jvm.JvmProtoBuf.JvmMethodSignature.getDefaultInstance(),
null,
100,
org.jetbrains.kotlin.protobuf.WireFormat.FieldType.MESSAGE,
org.jetbrains.kotlin.metadata.jvm.JvmProtoBuf.JvmMethodSignature.class);
public static final int METHOD_SIGNATURE_FIELD_NUMBER = 100;
/**
* extend .org.jetbrains.kotlin.metadata.Function { ... }
*/
public static final
org.jetbrains.kotlin.protobuf.GeneratedMessageLite.GeneratedExtension<
org.jetbrains.kotlin.metadata.ProtoBuf.Function,
org.jetbrains.kotlin.metadata.jvm.JvmProtoBuf.JvmMethodSignature> methodSignature = org.jetbrains.kotlin.protobuf.GeneratedMessageLite
.newSingularGeneratedExtension(
org.jetbrains.kotlin.metadata.ProtoBuf.Function.getDefaultInstance(),
org.jetbrains.kotlin.metadata.jvm.JvmProtoBuf.JvmMethodSignature.getDefaultInstance(),
org.jetbrains.kotlin.metadata.jvm.JvmProtoBuf.JvmMethodSignature.getDefaultInstance(),
null,
100,
org.jetbrains.kotlin.protobuf.WireFormat.FieldType.MESSAGE,
org.jetbrains.kotlin.metadata.jvm.JvmProtoBuf.JvmMethodSignature.class);
public static final int LAMBDA_CLASS_ORIGIN_NAME_FIELD_NUMBER = 101;
/**
* extend .org.jetbrains.kotlin.metadata.Function { ... }
*
*
* For lambdas from bodies of inline functions copied to the use site, the JVM internal name of the original
* lambda class this class is copied from
*
*/
public static final
org.jetbrains.kotlin.protobuf.GeneratedMessageLite.GeneratedExtension<
org.jetbrains.kotlin.metadata.ProtoBuf.Function,
java.lang.Integer> lambdaClassOriginName = org.jetbrains.kotlin.protobuf.GeneratedMessageLite
.newSingularGeneratedExtension(
org.jetbrains.kotlin.metadata.ProtoBuf.Function.getDefaultInstance(),
0,
null,
null,
101,
org.jetbrains.kotlin.protobuf.WireFormat.FieldType.INT32,
java.lang.Integer.class);
public static final int PROPERTY_SIGNATURE_FIELD_NUMBER = 100;
/**
* extend .org.jetbrains.kotlin.metadata.Property { ... }
*/
public static final
org.jetbrains.kotlin.protobuf.GeneratedMessageLite.GeneratedExtension<
org.jetbrains.kotlin.metadata.ProtoBuf.Property,
org.jetbrains.kotlin.metadata.jvm.JvmProtoBuf.JvmPropertySignature> propertySignature = org.jetbrains.kotlin.protobuf.GeneratedMessageLite
.newSingularGeneratedExtension(
org.jetbrains.kotlin.metadata.ProtoBuf.Property.getDefaultInstance(),
org.jetbrains.kotlin.metadata.jvm.JvmProtoBuf.JvmPropertySignature.getDefaultInstance(),
org.jetbrains.kotlin.metadata.jvm.JvmProtoBuf.JvmPropertySignature.getDefaultInstance(),
null,
100,
org.jetbrains.kotlin.protobuf.WireFormat.FieldType.MESSAGE,
org.jetbrains.kotlin.metadata.jvm.JvmProtoBuf.JvmPropertySignature.class);
public static final int FLAGS_FIELD_NUMBER = 101;
/**
* extend .org.jetbrains.kotlin.metadata.Property { ... }
*
*
**
*isMovedFromInterfaceCompanion true if this property is declared in an interface companion, and the field is stored in the interface
*
*/
public static final
org.jetbrains.kotlin.protobuf.GeneratedMessageLite.GeneratedExtension<
org.jetbrains.kotlin.metadata.ProtoBuf.Property,
java.lang.Integer> flags = org.jetbrains.kotlin.protobuf.GeneratedMessageLite
.newSingularGeneratedExtension(
org.jetbrains.kotlin.metadata.ProtoBuf.Property.getDefaultInstance(),
0,
null,
null,
101,
org.jetbrains.kotlin.protobuf.WireFormat.FieldType.INT32,
java.lang.Integer.class);
public static final int TYPE_ANNOTATION_FIELD_NUMBER = 100;
/**
* extend .org.jetbrains.kotlin.metadata.Type { ... }
*/
public static final
org.jetbrains.kotlin.protobuf.GeneratedMessageLite.GeneratedExtension<
org.jetbrains.kotlin.metadata.ProtoBuf.Type,
java.util.List> typeAnnotation = org.jetbrains.kotlin.protobuf.GeneratedMessageLite
.newRepeatedGeneratedExtension(
org.jetbrains.kotlin.metadata.ProtoBuf.Type.getDefaultInstance(),
org.jetbrains.kotlin.metadata.ProtoBuf.Annotation.getDefaultInstance(),
null,
100,
org.jetbrains.kotlin.protobuf.WireFormat.FieldType.MESSAGE,
false,
org.jetbrains.kotlin.metadata.ProtoBuf.Annotation.class);
public static final int IS_RAW_FIELD_NUMBER = 101;
/**
* extend .org.jetbrains.kotlin.metadata.Type { ... }
*/
public static final
org.jetbrains.kotlin.protobuf.GeneratedMessageLite.GeneratedExtension<
org.jetbrains.kotlin.metadata.ProtoBuf.Type,
java.lang.Boolean> isRaw = org.jetbrains.kotlin.protobuf.GeneratedMessageLite
.newSingularGeneratedExtension(
org.jetbrains.kotlin.metadata.ProtoBuf.Type.getDefaultInstance(),
false,
null,
null,
101,
org.jetbrains.kotlin.protobuf.WireFormat.FieldType.BOOL,
java.lang.Boolean.class);
public static final int TYPE_PARAMETER_ANNOTATION_FIELD_NUMBER = 100;
/**
* extend .org.jetbrains.kotlin.metadata.TypeParameter { ... }
*/
public static final
org.jetbrains.kotlin.protobuf.GeneratedMessageLite.GeneratedExtension<
org.jetbrains.kotlin.metadata.ProtoBuf.TypeParameter,
java.util.List> typeParameterAnnotation = org.jetbrains.kotlin.protobuf.GeneratedMessageLite
.newRepeatedGeneratedExtension(
org.jetbrains.kotlin.metadata.ProtoBuf.TypeParameter.getDefaultInstance(),
org.jetbrains.kotlin.metadata.ProtoBuf.Annotation.getDefaultInstance(),
null,
100,
org.jetbrains.kotlin.protobuf.WireFormat.FieldType.MESSAGE,
false,
org.jetbrains.kotlin.metadata.ProtoBuf.Annotation.class);
public static final int CLASS_MODULE_NAME_FIELD_NUMBER = 101;
/**
* extend .org.jetbrains.kotlin.metadata.Class { ... }
*
*
* If absent, assumed to be "main" (JvmProtoBufUtil.DEFAULT_MODULE_NAME)
*
*/
public static final
org.jetbrains.kotlin.protobuf.GeneratedMessageLite.GeneratedExtension<
org.jetbrains.kotlin.metadata.ProtoBuf.Class,
java.lang.Integer> classModuleName = org.jetbrains.kotlin.protobuf.GeneratedMessageLite
.newSingularGeneratedExtension(
org.jetbrains.kotlin.metadata.ProtoBuf.Class.getDefaultInstance(),
0,
null,
null,
101,
org.jetbrains.kotlin.protobuf.WireFormat.FieldType.INT32,
java.lang.Integer.class);
public static final int CLASS_LOCAL_VARIABLE_FIELD_NUMBER = 102;
/**
* extend .org.jetbrains.kotlin.metadata.Class { ... }
*/
public static final
org.jetbrains.kotlin.protobuf.GeneratedMessageLite.GeneratedExtension<
org.jetbrains.kotlin.metadata.ProtoBuf.Class,
java.util.List> classLocalVariable = org.jetbrains.kotlin.protobuf.GeneratedMessageLite
.newRepeatedGeneratedExtension(
org.jetbrains.kotlin.metadata.ProtoBuf.Class.getDefaultInstance(),
org.jetbrains.kotlin.metadata.ProtoBuf.Property.getDefaultInstance(),
null,
102,
org.jetbrains.kotlin.protobuf.WireFormat.FieldType.MESSAGE,
false,
org.jetbrains.kotlin.metadata.ProtoBuf.Property.class);
public static final int ANONYMOUS_OBJECT_ORIGIN_NAME_FIELD_NUMBER = 103;
/**
* extend .org.jetbrains.kotlin.metadata.Class { ... }
*
*
* For anonymous objects from bodies of inline functions copied to the use site, the JVM internal name of the original
* anonymous object this class is copied from
*
*/
public static final
org.jetbrains.kotlin.protobuf.GeneratedMessageLite.GeneratedExtension<
org.jetbrains.kotlin.metadata.ProtoBuf.Class,
java.lang.Integer> anonymousObjectOriginName = org.jetbrains.kotlin.protobuf.GeneratedMessageLite
.newSingularGeneratedExtension(
org.jetbrains.kotlin.metadata.ProtoBuf.Class.getDefaultInstance(),
0,
null,
null,
103,
org.jetbrains.kotlin.protobuf.WireFormat.FieldType.INT32,
java.lang.Integer.class);
public static final int JVM_CLASS_FLAGS_FIELD_NUMBER = 104;
/**
* extend .org.jetbrains.kotlin.metadata.Class { ... }
*
*
* first bit: isFunctionBodyInInterface: 0 if actual body generated in DefaultImpl, 1 - otherwise (in interface default method)
* second bit: is all-compatibility mode or not, 1 - yes, 0 - no
*
*/
public static final
org.jetbrains.kotlin.protobuf.GeneratedMessageLite.GeneratedExtension<
org.jetbrains.kotlin.metadata.ProtoBuf.Class,
java.lang.Integer> jvmClassFlags = org.jetbrains.kotlin.protobuf.GeneratedMessageLite
.newSingularGeneratedExtension(
org.jetbrains.kotlin.metadata.ProtoBuf.Class.getDefaultInstance(),
0,
null,
null,
104,
org.jetbrains.kotlin.protobuf.WireFormat.FieldType.INT32,
java.lang.Integer.class);
public static final int PACKAGE_MODULE_NAME_FIELD_NUMBER = 101;
/**
* extend .org.jetbrains.kotlin.metadata.Package { ... }
*/
public static final
org.jetbrains.kotlin.protobuf.GeneratedMessageLite.GeneratedExtension<
org.jetbrains.kotlin.metadata.ProtoBuf.Package,
java.lang.Integer> packageModuleName = org.jetbrains.kotlin.protobuf.GeneratedMessageLite
.newSingularGeneratedExtension(
org.jetbrains.kotlin.metadata.ProtoBuf.Package.getDefaultInstance(),
0,
null,
null,
101,
org.jetbrains.kotlin.protobuf.WireFormat.FieldType.INT32,
java.lang.Integer.class);
public static final int PACKAGE_LOCAL_VARIABLE_FIELD_NUMBER = 102;
/**
* extend .org.jetbrains.kotlin.metadata.Package { ... }
*/
public static final
org.jetbrains.kotlin.protobuf.GeneratedMessageLite.GeneratedExtension<
org.jetbrains.kotlin.metadata.ProtoBuf.Package,
java.util.List> packageLocalVariable = org.jetbrains.kotlin.protobuf.GeneratedMessageLite
.newRepeatedGeneratedExtension(
org.jetbrains.kotlin.metadata.ProtoBuf.Package.getDefaultInstance(),
org.jetbrains.kotlin.metadata.ProtoBuf.Property.getDefaultInstance(),
null,
102,
org.jetbrains.kotlin.protobuf.WireFormat.FieldType.MESSAGE,
false,
org.jetbrains.kotlin.metadata.ProtoBuf.Property.class);
static {
}
// @@protoc_insertion_point(outer_class_scope)
}