io.substrait.proto.NamedStruct Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of core Show documentation
Show all versions of core Show documentation
Create a well-defined, cross-language specification for data compute operations
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: substrait/type.proto
// Protobuf Java Version: 3.25.5
package io.substrait.proto;
/**
*
* A message for modeling name/type pairs.
*
* Useful for representing relation schemas.
*
* Notes:
*
* * The names field is in depth-first order.
*
* For example a schema such as:
*
* a: int64
* b: struct<c: float32, d: string>
*
* would have a `names` field that looks like:
*
* ["a", "b", "c", "d"]
*
* * Only struct fields are contained in this field's elements,
* * Map keys should be traversed first, then values when producing/consuming
*
*
* Protobuf type {@code substrait.NamedStruct}
*/
public final class NamedStruct extends
com.google.protobuf.GeneratedMessageV3 implements
// @@protoc_insertion_point(message_implements:substrait.NamedStruct)
NamedStructOrBuilder {
private static final long serialVersionUID = 0L;
// Use NamedStruct.newBuilder() to construct.
private NamedStruct(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private NamedStruct() {
names_ =
com.google.protobuf.LazyStringArrayList.emptyList();
}
@java.lang.Override
@SuppressWarnings({"unused"})
protected java.lang.Object newInstance(
UnusedPrivateParameter unused) {
return new NamedStruct();
}
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return io.substrait.proto.TypeOuterClass.internal_static_substrait_NamedStruct_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return io.substrait.proto.TypeOuterClass.internal_static_substrait_NamedStruct_fieldAccessorTable
.ensureFieldAccessorsInitialized(
io.substrait.proto.NamedStruct.class, io.substrait.proto.NamedStruct.Builder.class);
}
private int bitField0_;
public static final int NAMES_FIELD_NUMBER = 1;
@SuppressWarnings("serial")
private com.google.protobuf.LazyStringArrayList names_ =
com.google.protobuf.LazyStringArrayList.emptyList();
/**
*
* list of names in dfs order
*
*
* repeated string names = 1;
* @return A list containing the names.
*/
public com.google.protobuf.ProtocolStringList
getNamesList() {
return names_;
}
/**
*
* list of names in dfs order
*
*
* repeated string names = 1;
* @return The count of names.
*/
public int getNamesCount() {
return names_.size();
}
/**
*
* list of names in dfs order
*
*
* repeated string names = 1;
* @param index The index of the element to return.
* @return The names at the given index.
*/
public java.lang.String getNames(int index) {
return names_.get(index);
}
/**
*
* list of names in dfs order
*
*
* repeated string names = 1;
* @param index The index of the value to return.
* @return The bytes of the names at the given index.
*/
public com.google.protobuf.ByteString
getNamesBytes(int index) {
return names_.getByteString(index);
}
public static final int STRUCT_FIELD_NUMBER = 2;
private io.substrait.proto.Type.Struct struct_;
/**
* .substrait.Type.Struct struct = 2;
* @return Whether the struct field is set.
*/
@java.lang.Override
public boolean hasStruct() {
return ((bitField0_ & 0x00000001) != 0);
}
/**
* .substrait.Type.Struct struct = 2;
* @return The struct.
*/
@java.lang.Override
public io.substrait.proto.Type.Struct getStruct() {
return struct_ == null ? io.substrait.proto.Type.Struct.getDefaultInstance() : struct_;
}
/**
* .substrait.Type.Struct struct = 2;
*/
@java.lang.Override
public io.substrait.proto.Type.StructOrBuilder getStructOrBuilder() {
return struct_ == null ? io.substrait.proto.Type.Struct.getDefaultInstance() : struct_;
}
private byte memoizedIsInitialized = -1;
@java.lang.Override
public final boolean isInitialized() {
byte isInitialized = memoizedIsInitialized;
if (isInitialized == 1) return true;
if (isInitialized == 0) return false;
memoizedIsInitialized = 1;
return true;
}
@java.lang.Override
public void writeTo(com.google.protobuf.CodedOutputStream output)
throws java.io.IOException {
for (int i = 0; i < names_.size(); i++) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 1, names_.getRaw(i));
}
if (((bitField0_ & 0x00000001) != 0)) {
output.writeMessage(2, getStruct());
}
getUnknownFields().writeTo(output);
}
@java.lang.Override
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
{
int dataSize = 0;
for (int i = 0; i < names_.size(); i++) {
dataSize += computeStringSizeNoTag(names_.getRaw(i));
}
size += dataSize;
size += 1 * getNamesList().size();
}
if (((bitField0_ & 0x00000001) != 0)) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(2, getStruct());
}
size += getUnknownFields().getSerializedSize();
memoizedSize = size;
return size;
}
@java.lang.Override
public boolean equals(final java.lang.Object obj) {
if (obj == this) {
return true;
}
if (!(obj instanceof io.substrait.proto.NamedStruct)) {
return super.equals(obj);
}
io.substrait.proto.NamedStruct other = (io.substrait.proto.NamedStruct) obj;
if (!getNamesList()
.equals(other.getNamesList())) return false;
if (hasStruct() != other.hasStruct()) return false;
if (hasStruct()) {
if (!getStruct()
.equals(other.getStruct())) return false;
}
if (!getUnknownFields().equals(other.getUnknownFields())) return false;
return true;
}
@java.lang.Override
public int hashCode() {
if (memoizedHashCode != 0) {
return memoizedHashCode;
}
int hash = 41;
hash = (19 * hash) + getDescriptor().hashCode();
if (getNamesCount() > 0) {
hash = (37 * hash) + NAMES_FIELD_NUMBER;
hash = (53 * hash) + getNamesList().hashCode();
}
if (hasStruct()) {
hash = (37 * hash) + STRUCT_FIELD_NUMBER;
hash = (53 * hash) + getStruct().hashCode();
}
hash = (29 * hash) + getUnknownFields().hashCode();
memoizedHashCode = hash;
return hash;
}
public static io.substrait.proto.NamedStruct parseFrom(
java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static io.substrait.proto.NamedStruct parseFrom(
java.nio.ByteBuffer data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static io.substrait.proto.NamedStruct parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static io.substrait.proto.NamedStruct parseFrom(
com.google.protobuf.ByteString data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static io.substrait.proto.NamedStruct parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static io.substrait.proto.NamedStruct parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static io.substrait.proto.NamedStruct parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static io.substrait.proto.NamedStruct parseFrom(
java.io.InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input, extensionRegistry);
}
public static io.substrait.proto.NamedStruct parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input);
}
public static io.substrait.proto.NamedStruct parseDelimitedFrom(
java.io.InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input, extensionRegistry);
}
public static io.substrait.proto.NamedStruct parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static io.substrait.proto.NamedStruct parseFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input, extensionRegistry);
}
@java.lang.Override
public Builder newBuilderForType() { return newBuilder(); }
public static Builder newBuilder() {
return DEFAULT_INSTANCE.toBuilder();
}
public static Builder newBuilder(io.substrait.proto.NamedStruct prototype) {
return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype);
}
@java.lang.Override
public Builder toBuilder() {
return this == DEFAULT_INSTANCE
? new Builder() : new Builder().mergeFrom(this);
}
@java.lang.Override
protected Builder newBuilderForType(
com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
Builder builder = new Builder(parent);
return builder;
}
/**
*
* A message for modeling name/type pairs.
*
* Useful for representing relation schemas.
*
* Notes:
*
* * The names field is in depth-first order.
*
* For example a schema such as:
*
* a: int64
* b: struct<c: float32, d: string>
*
* would have a `names` field that looks like:
*
* ["a", "b", "c", "d"]
*
* * Only struct fields are contained in this field's elements,
* * Map keys should be traversed first, then values when producing/consuming
*
*
* Protobuf type {@code substrait.NamedStruct}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessageV3.Builder implements
// @@protoc_insertion_point(builder_implements:substrait.NamedStruct)
io.substrait.proto.NamedStructOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return io.substrait.proto.TypeOuterClass.internal_static_substrait_NamedStruct_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return io.substrait.proto.TypeOuterClass.internal_static_substrait_NamedStruct_fieldAccessorTable
.ensureFieldAccessorsInitialized(
io.substrait.proto.NamedStruct.class, io.substrait.proto.NamedStruct.Builder.class);
}
// Construct using io.substrait.proto.NamedStruct.newBuilder()
private Builder() {
maybeForceBuilderInitialization();
}
private Builder(
com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
super(parent);
maybeForceBuilderInitialization();
}
private void maybeForceBuilderInitialization() {
if (com.google.protobuf.GeneratedMessageV3
.alwaysUseFieldBuilders) {
getStructFieldBuilder();
}
}
@java.lang.Override
public Builder clear() {
super.clear();
bitField0_ = 0;
names_ =
com.google.protobuf.LazyStringArrayList.emptyList();
struct_ = null;
if (structBuilder_ != null) {
structBuilder_.dispose();
structBuilder_ = null;
}
return this;
}
@java.lang.Override
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return io.substrait.proto.TypeOuterClass.internal_static_substrait_NamedStruct_descriptor;
}
@java.lang.Override
public io.substrait.proto.NamedStruct getDefaultInstanceForType() {
return io.substrait.proto.NamedStruct.getDefaultInstance();
}
@java.lang.Override
public io.substrait.proto.NamedStruct build() {
io.substrait.proto.NamedStruct result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public io.substrait.proto.NamedStruct buildPartial() {
io.substrait.proto.NamedStruct result = new io.substrait.proto.NamedStruct(this);
if (bitField0_ != 0) { buildPartial0(result); }
onBuilt();
return result;
}
private void buildPartial0(io.substrait.proto.NamedStruct result) {
int from_bitField0_ = bitField0_;
if (((from_bitField0_ & 0x00000001) != 0)) {
names_.makeImmutable();
result.names_ = names_;
}
int to_bitField0_ = 0;
if (((from_bitField0_ & 0x00000002) != 0)) {
result.struct_ = structBuilder_ == null
? struct_
: structBuilder_.build();
to_bitField0_ |= 0x00000001;
}
result.bitField0_ |= to_bitField0_;
}
@java.lang.Override
public Builder clone() {
return super.clone();
}
@java.lang.Override
public Builder setField(
com.google.protobuf.Descriptors.FieldDescriptor field,
java.lang.Object value) {
return super.setField(field, value);
}
@java.lang.Override
public Builder clearField(
com.google.protobuf.Descriptors.FieldDescriptor field) {
return super.clearField(field);
}
@java.lang.Override
public Builder clearOneof(
com.google.protobuf.Descriptors.OneofDescriptor oneof) {
return super.clearOneof(oneof);
}
@java.lang.Override
public Builder setRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field,
int index, java.lang.Object value) {
return super.setRepeatedField(field, index, value);
}
@java.lang.Override
public Builder addRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field,
java.lang.Object value) {
return super.addRepeatedField(field, value);
}
@java.lang.Override
public Builder mergeFrom(com.google.protobuf.Message other) {
if (other instanceof io.substrait.proto.NamedStruct) {
return mergeFrom((io.substrait.proto.NamedStruct)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(io.substrait.proto.NamedStruct other) {
if (other == io.substrait.proto.NamedStruct.getDefaultInstance()) return this;
if (!other.names_.isEmpty()) {
if (names_.isEmpty()) {
names_ = other.names_;
bitField0_ |= 0x00000001;
} else {
ensureNamesIsMutable();
names_.addAll(other.names_);
}
onChanged();
}
if (other.hasStruct()) {
mergeStruct(other.getStruct());
}
this.mergeUnknownFields(other.getUnknownFields());
onChanged();
return this;
}
@java.lang.Override
public final boolean isInitialized() {
return true;
}
@java.lang.Override
public Builder mergeFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
if (extensionRegistry == null) {
throw new java.lang.NullPointerException();
}
try {
boolean done = false;
while (!done) {
int tag = input.readTag();
switch (tag) {
case 0:
done = true;
break;
case 10: {
java.lang.String s = input.readStringRequireUtf8();
ensureNamesIsMutable();
names_.add(s);
break;
} // case 10
case 18: {
input.readMessage(
getStructFieldBuilder().getBuilder(),
extensionRegistry);
bitField0_ |= 0x00000002;
break;
} // case 18
default: {
if (!super.parseUnknownField(input, extensionRegistry, tag)) {
done = true; // was an endgroup tag
}
break;
} // default:
} // switch (tag)
} // while (!done)
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
throw e.unwrapIOException();
} finally {
onChanged();
} // finally
return this;
}
private int bitField0_;
private com.google.protobuf.LazyStringArrayList names_ =
com.google.protobuf.LazyStringArrayList.emptyList();
private void ensureNamesIsMutable() {
if (!names_.isModifiable()) {
names_ = new com.google.protobuf.LazyStringArrayList(names_);
}
bitField0_ |= 0x00000001;
}
/**
*
* list of names in dfs order
*
*
* repeated string names = 1;
* @return A list containing the names.
*/
public com.google.protobuf.ProtocolStringList
getNamesList() {
names_.makeImmutable();
return names_;
}
/**
*
* list of names in dfs order
*
*
* repeated string names = 1;
* @return The count of names.
*/
public int getNamesCount() {
return names_.size();
}
/**
*
* list of names in dfs order
*
*
* repeated string names = 1;
* @param index The index of the element to return.
* @return The names at the given index.
*/
public java.lang.String getNames(int index) {
return names_.get(index);
}
/**
*
* list of names in dfs order
*
*
* repeated string names = 1;
* @param index The index of the value to return.
* @return The bytes of the names at the given index.
*/
public com.google.protobuf.ByteString
getNamesBytes(int index) {
return names_.getByteString(index);
}
/**
*
* list of names in dfs order
*
*
* repeated string names = 1;
* @param index The index to set the value at.
* @param value The names to set.
* @return This builder for chaining.
*/
public Builder setNames(
int index, java.lang.String value) {
if (value == null) { throw new NullPointerException(); }
ensureNamesIsMutable();
names_.set(index, value);
bitField0_ |= 0x00000001;
onChanged();
return this;
}
/**
*
* list of names in dfs order
*
*
* repeated string names = 1;
* @param value The names to add.
* @return This builder for chaining.
*/
public Builder addNames(
java.lang.String value) {
if (value == null) { throw new NullPointerException(); }
ensureNamesIsMutable();
names_.add(value);
bitField0_ |= 0x00000001;
onChanged();
return this;
}
/**
*
* list of names in dfs order
*
*
* repeated string names = 1;
* @param values The names to add.
* @return This builder for chaining.
*/
public Builder addAllNames(
java.lang.Iterable values) {
ensureNamesIsMutable();
com.google.protobuf.AbstractMessageLite.Builder.addAll(
values, names_);
bitField0_ |= 0x00000001;
onChanged();
return this;
}
/**
*
* list of names in dfs order
*
*
* repeated string names = 1;
* @return This builder for chaining.
*/
public Builder clearNames() {
names_ =
com.google.protobuf.LazyStringArrayList.emptyList();
bitField0_ = (bitField0_ & ~0x00000001);;
onChanged();
return this;
}
/**
*
* list of names in dfs order
*
*
* repeated string names = 1;
* @param value The bytes of the names to add.
* @return This builder for chaining.
*/
public Builder addNamesBytes(
com.google.protobuf.ByteString value) {
if (value == null) { throw new NullPointerException(); }
checkByteStringIsUtf8(value);
ensureNamesIsMutable();
names_.add(value);
bitField0_ |= 0x00000001;
onChanged();
return this;
}
private io.substrait.proto.Type.Struct struct_;
private com.google.protobuf.SingleFieldBuilderV3<
io.substrait.proto.Type.Struct, io.substrait.proto.Type.Struct.Builder, io.substrait.proto.Type.StructOrBuilder> structBuilder_;
/**
* .substrait.Type.Struct struct = 2;
* @return Whether the struct field is set.
*/
public boolean hasStruct() {
return ((bitField0_ & 0x00000002) != 0);
}
/**
* .substrait.Type.Struct struct = 2;
* @return The struct.
*/
public io.substrait.proto.Type.Struct getStruct() {
if (structBuilder_ == null) {
return struct_ == null ? io.substrait.proto.Type.Struct.getDefaultInstance() : struct_;
} else {
return structBuilder_.getMessage();
}
}
/**
* .substrait.Type.Struct struct = 2;
*/
public Builder setStruct(io.substrait.proto.Type.Struct value) {
if (structBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
struct_ = value;
} else {
structBuilder_.setMessage(value);
}
bitField0_ |= 0x00000002;
onChanged();
return this;
}
/**
* .substrait.Type.Struct struct = 2;
*/
public Builder setStruct(
io.substrait.proto.Type.Struct.Builder builderForValue) {
if (structBuilder_ == null) {
struct_ = builderForValue.build();
} else {
structBuilder_.setMessage(builderForValue.build());
}
bitField0_ |= 0x00000002;
onChanged();
return this;
}
/**
* .substrait.Type.Struct struct = 2;
*/
public Builder mergeStruct(io.substrait.proto.Type.Struct value) {
if (structBuilder_ == null) {
if (((bitField0_ & 0x00000002) != 0) &&
struct_ != null &&
struct_ != io.substrait.proto.Type.Struct.getDefaultInstance()) {
getStructBuilder().mergeFrom(value);
} else {
struct_ = value;
}
} else {
structBuilder_.mergeFrom(value);
}
if (struct_ != null) {
bitField0_ |= 0x00000002;
onChanged();
}
return this;
}
/**
* .substrait.Type.Struct struct = 2;
*/
public Builder clearStruct() {
bitField0_ = (bitField0_ & ~0x00000002);
struct_ = null;
if (structBuilder_ != null) {
structBuilder_.dispose();
structBuilder_ = null;
}
onChanged();
return this;
}
/**
* .substrait.Type.Struct struct = 2;
*/
public io.substrait.proto.Type.Struct.Builder getStructBuilder() {
bitField0_ |= 0x00000002;
onChanged();
return getStructFieldBuilder().getBuilder();
}
/**
* .substrait.Type.Struct struct = 2;
*/
public io.substrait.proto.Type.StructOrBuilder getStructOrBuilder() {
if (structBuilder_ != null) {
return structBuilder_.getMessageOrBuilder();
} else {
return struct_ == null ?
io.substrait.proto.Type.Struct.getDefaultInstance() : struct_;
}
}
/**
* .substrait.Type.Struct struct = 2;
*/
private com.google.protobuf.SingleFieldBuilderV3<
io.substrait.proto.Type.Struct, io.substrait.proto.Type.Struct.Builder, io.substrait.proto.Type.StructOrBuilder>
getStructFieldBuilder() {
if (structBuilder_ == null) {
structBuilder_ = new com.google.protobuf.SingleFieldBuilderV3<
io.substrait.proto.Type.Struct, io.substrait.proto.Type.Struct.Builder, io.substrait.proto.Type.StructOrBuilder>(
getStruct(),
getParentForChildren(),
isClean());
struct_ = null;
}
return structBuilder_;
}
@java.lang.Override
public final Builder setUnknownFields(
final com.google.protobuf.UnknownFieldSet unknownFields) {
return super.setUnknownFields(unknownFields);
}
@java.lang.Override
public final Builder mergeUnknownFields(
final com.google.protobuf.UnknownFieldSet unknownFields) {
return super.mergeUnknownFields(unknownFields);
}
// @@protoc_insertion_point(builder_scope:substrait.NamedStruct)
}
// @@protoc_insertion_point(class_scope:substrait.NamedStruct)
private static final io.substrait.proto.NamedStruct DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new io.substrait.proto.NamedStruct();
}
public static io.substrait.proto.NamedStruct getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser
PARSER = new com.google.protobuf.AbstractParser() {
@java.lang.Override
public NamedStruct parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
Builder builder = newBuilder();
try {
builder.mergeFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
throw e.setUnfinishedMessage(builder.buildPartial());
} catch (com.google.protobuf.UninitializedMessageException e) {
throw e.asInvalidProtocolBufferException().setUnfinishedMessage(builder.buildPartial());
} catch (java.io.IOException e) {
throw new com.google.protobuf.InvalidProtocolBufferException(e)
.setUnfinishedMessage(builder.buildPartial());
}
return builder.buildPartial();
}
};
public static com.google.protobuf.Parser parser() {
return PARSER;
}
@java.lang.Override
public com.google.protobuf.Parser getParserForType() {
return PARSER;
}
@java.lang.Override
public io.substrait.proto.NamedStruct getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy