org.sonar.plugins.javascript.bridge.protobuf.SwitchCaseOrBuilder Maven / Gradle / Ivy
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: estree.proto
// Protobuf Java Version: 3.25.5
package org.sonar.plugins.javascript.bridge.protobuf;
public interface SwitchCaseOrBuilder extends
// @@protoc_insertion_point(interface_extends:SwitchCase)
com.google.protobuf.MessageOrBuilder {
/**
* optional .Node test = 1;
* @return Whether the test field is set.
*/
boolean hasTest();
/**
* optional .Node test = 1;
* @return The test.
*/
org.sonar.plugins.javascript.bridge.protobuf.Node getTest();
/**
* optional .Node test = 1;
*/
org.sonar.plugins.javascript.bridge.protobuf.NodeOrBuilder getTestOrBuilder();
/**
* repeated .Node consequent = 2;
*/
java.util.List
getConsequentList();
/**
* repeated .Node consequent = 2;
*/
org.sonar.plugins.javascript.bridge.protobuf.Node getConsequent(int index);
/**
* repeated .Node consequent = 2;
*/
int getConsequentCount();
/**
* repeated .Node consequent = 2;
*/
java.util.List extends org.sonar.plugins.javascript.bridge.protobuf.NodeOrBuilder>
getConsequentOrBuilderList();
/**
* repeated .Node consequent = 2;
*/
org.sonar.plugins.javascript.bridge.protobuf.NodeOrBuilder getConsequentOrBuilder(
int index);
}