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

org.jetbrains.kotlin.backend.common.serialization.proto.IrConstOrBuilder Maven / Gradle / Ivy

There is a newer version: 2.0.0
Show newest version
// Generated by the protocol buffer compiler.  DO NOT EDIT!
// source: compiler/ir/serialization.common/src/KotlinIr.proto

package org.jetbrains.kotlin.backend.common.serialization.proto;

public interface IrConstOrBuilder extends
    // @@protoc_insertion_point(interface_extends:org.jetbrains.kotlin.backend.common.serialization.proto.IrConst)
    org.jetbrains.kotlin.protobuf.MessageLiteOrBuilder {

  /**
   * optional bool null = 1;
   */
  boolean hasNull();
  /**
   * optional bool null = 1;
   */
  boolean getNull();

  /**
   * optional bool boolean = 2;
   */
  boolean hasBoolean();
  /**
   * optional bool boolean = 2;
   */
  boolean getBoolean();

  /**
   * optional int32 char = 3;
   */
  boolean hasChar();
  /**
   * optional int32 char = 3;
   */
  int getChar();

  /**
   * optional int32 byte = 4;
   */
  boolean hasByte();
  /**
   * optional int32 byte = 4;
   */
  int getByte();

  /**
   * optional int32 short = 5;
   */
  boolean hasShort();
  /**
   * optional int32 short = 5;
   */
  int getShort();

  /**
   * optional int32 int = 6;
   */
  boolean hasInt();
  /**
   * optional int32 int = 6;
   */
  int getInt();

  /**
   * optional int64 long = 7;
   */
  boolean hasLong();
  /**
   * optional int64 long = 7;
   */
  long getLong();

  /**
   * optional fixed32 float_bits = 8;
   *
   * 
   * float/double is stored via fixed 32/64 bit value to avoid raw bit conversion
   * 
*/ boolean hasFloatBits(); /** * optional fixed32 float_bits = 8; * *
   * float/double is stored via fixed 32/64 bit value to avoid raw bit conversion
   * 
*/ int getFloatBits(); /** * optional fixed64 double_bits = 9; */ boolean hasDoubleBits(); /** * optional fixed64 double_bits = 9; */ long getDoubleBits(); /** * optional int32 string = 10; */ boolean hasString(); /** * optional int32 string = 10; */ int getString(); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy