Package com.taobao.top.analysis.statistics.data

Examples of com.taobao.top.analysis.statistics.data.ObjectColumn


            } else
              if (aliasPool != null && aliasPool.size() > 0
                  && temp.indexOf(".") > 0
                  && aliasPool.get(temp.substring(0, temp.indexOf("."))) != null)
              {
                bindingStack.add(new ObjectColumn(aliasPool.get(temp.substring(0, temp.indexOf("."))).getKey(),
                  temp.substring(temp.indexOf(".")+1)));
              }
              else
                bindingStack.add(Integer.valueOf(temp));
View Full Code Here


            if (c == AnalysisConstants.GLOBAL_KEY)
                return AnalysisConstants.GLOBAL_KEY_STR;
           
            if (c == AnalysisConstants.Object_KEY)
            {
              ObjectColumn oc = subkeys.next();
             
              if (oc == null)
                throw new java.lang.RuntimeException(new StringBuilder(entry.getName()).append(" objectColumn not exist!").toString());
             
              String column = contents[oc.getcIndex() - 1];
             
              return ReportUtil.getValueFromJosnObj(column,oc.getSubKeyName());
             
            }

            if (c > contents.length) {
                if (!threshold.sholdBlock()) {
View Full Code Here

        else
          if(aliasPool != null && aliasPool.size() > 0 &&
              keys[i].indexOf(".") > 0 && aliasPool.get(keys[i].substring(0, keys[i].indexOf("."))) != null)//列是复杂对象
         
            tKeys[i] = AnalysisConstants.Object_KEY;
            subKeys.add(new ObjectColumn(aliasPool.get(keys[i].substring(0, keys[i].indexOf("."))).getKey(),
                keys[i].substring(keys[i].indexOf(".") + 1)));
          }
          else
            tKeys[i] = Integer.parseInt(keys[i]);
      }
View Full Code Here

TOP

Related Classes of com.taobao.top.analysis.statistics.data.ObjectColumn

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.