Class FromStmt

java.lang.Object
org.apache.skywalking.oal.rt.parser.FromStmt

public class FromStmt extends Object
FROM statement in the OAL script
  • Constructor Details

    • FromStmt

      public FromStmt()
  • Method Details

    • setSourceName

      public void setSourceName(String sourceName)
      Source name in the FROM statement
    • setSourceScopeId

      public void setSourceScopeId(int sourceScopeId)
      source id according to sourceName
    • setSourceAttribute

      public void setSourceAttribute(List<String> sourceAttribute)
      Attribute accessor
    • setSourceCastType

      public void setSourceCastType(String sourceCastType)
      Type cast function if exists. NULL as default, means no cast.
    • getSourceName

      public String getSourceName()
      Source name in the FROM statement
    • getSourceScopeId

      public int getSourceScopeId()
      source id according to sourceName
    • getSourceAttribute

      public List<String> getSourceAttribute()
      Attribute accessor
    • getSourceCastType

      public String getSourceCastType()
      Type cast function if exists. NULL as default, means no cast.