Java Time Format formattedStats(String pExecTime, int pTxns)

Here you can find the source of formattedStats(String pExecTime, int pTxns)

Description

formatted Stats

License

Open Source License

Declaration

public static String formattedStats(String pExecTime, int pTxns) 

Method Source Code

//package com.java2s;

public class Main {
    public static String formattedStats(String pExecTime, int pTxns) {
        String result = "";

        result = Integer.toString(pTxns) + " txns, in " + pExecTime + " secs.";

        return result;
    }/*from  ww w .  j  av  a  2  s  .com*/
}

Related

  1. formatSample(final int aValue, final long aTimestamp)
  2. formatSignificantElapsedTime(final long seconds)
  3. formatStartRowKeyString(String id, String timestampStart)
  4. formatStrDateTime(String stringDateTime)
  5. formatString(String agentId, long agentStartTime, long transactionSequence)
  6. formattedUnixTime()
  7. formatTime(byte[] btValue, int iOffset, int iLength)
  8. formatTime(double time)
  9. formatTime(double totalTime)