All Downloads are FREE. Search and download functionalities are using the official Maven repository.

it.auties.protobuf.serialization.model.object.ProtobufEnumMetadata Maven / Gradle / Ivy

package it.auties.protobuf.serialization.model.object;

import javax.lang.model.element.ExecutableElement;
import javax.lang.model.element.VariableElement;

public record ProtobufEnumMetadata(ExecutableElement constructor, VariableElement field, VariableElement parameter, int parameterIndex) {
    public static ProtobufEnumMetadata unknown() {
        return new ProtobufEnumMetadata(null, null, null, -1);
    }

    public boolean isUnknown() {
        return parameterIndex == -1;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy