com.hedera.hapi.block.schema.PublishStreamRequestSchema Maven / Gradle / Ivy
package com.hedera.hapi.block.schema;
import com.hedera.pbj.runtime.FieldDefinition;
import com.hedera.pbj.runtime.FieldType;
import com.hedera.pbj.runtime.Schema;
/**
* Schema for PublishStreamRequest model object. Generate based on protobuf schema.
*/
public final class PublishStreamRequestSchema implements Schema {
// -- FIELD DEFINITIONS ---------------------------------------------
/**
* (1) A single item written to the block stream.
*/
public static final FieldDefinition BLOCK_ITEM = new FieldDefinition("block_item", FieldType.MESSAGE, false, false, false, 1);
// -- OTHER METHODS -------------------------------------------------
/**
* Check if a field definition belongs to this schema.
*
* @param f field def to check
* @return true if it belongs to this schema
*/
public static boolean valid(FieldDefinition f) {
return f != null && getField(f.number()) == f;
}
/**
* Get a field definition given a field number
*
* @param fieldNumber the fields number to get def for
* @return field def or null if field number does not exist
*/
public static FieldDefinition getField(final int fieldNumber) {
return switch(fieldNumber) {
case 1 -> BLOCK_ITEM;
default -> null;
};
}
}