Package com.google.genai.types
Class TestTableFile
-
- All Implemented Interfaces:
public abstract class TestTableFile extends JsonSerializable
None
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public abstract classTestTableFile.BuilderBuilder for TestTableFile.
-
Field Summary
Fields Modifier and Type Field Description public final static StringMAX_READ_LENGTH_PROPERTY
-
Constructor Summary
Constructors Constructor Description TestTableFile()
-
Method Summary
Modifier and Type Method Description abstract Optional<String>comment()abstract Optional<String>testMethod()abstract Optional<List<String>>parameterNames()abstract Optional<List<TestTableItem>>testTable()static TestTableFile.Builderbuilder()Instantiates a builder for TestTableFile. abstract TestTableFile.BuildertoBuilder()Creates a builder with the same values as this instance. static TestTableFilefromJson(String jsonString)Deserializes a JSON string to a TestTableFile object. -
Methods inherited from class com.google.genai.JsonSerializable
fromJsonNode, fromJsonString, objectMapper, setMaxReadLength, stringToJsonNode, toJson, toJsonNode, toJsonString -
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
Method Detail
-
testMethod
abstract Optional<String> testMethod()
-
parameterNames
abstract Optional<List<String>> parameterNames()
-
testTable
abstract Optional<List<TestTableItem>> testTable()
-
builder
static TestTableFile.Builder builder()
Instantiates a builder for TestTableFile.
-
toBuilder
abstract TestTableFile.Builder toBuilder()
Creates a builder with the same values as this instance.
-
fromJson
static TestTableFile fromJson(String jsonString)
Deserializes a JSON string to a TestTableFile object.
-
-
-
-