Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
/*
* Copyright (C) 2023-2024 Hedera Hashgraph, LLC
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.swirlds.metrics.api;
public final class FloatFormats {
public static final String FORMAT_1_3 = "%,1.3f";
public static final String FORMAT_1_4 = "%,1.4f";
public static final String FORMAT_2_0 = "%,2.0f";
public static final String FORMAT_3_0 = "%3.0f";
public static final String FORMAT_3_1 = "%,3.1f";
public static final String FORMAT_4_2 = "%,4.2f";
public static final String FORMAT_5_3 = "%,5.3f";
public static final String FORMAT_6_0 = "%,6.0f";
public static final String FORMAT_6_2 = "%,6.2f";
public static final String FORMAT_7_0 = "%,7.0f";
public static final String FORMAT_8_0 = "%,8.0f";
public static final String FORMAT_8_1 = "%,8.1f";
public static final String FORMAT_9_6 = "%,9.6f";
public static final String FORMAT_10_0 = "%,10.0f";
public static final String FORMAT_10_1 = "%,10.1f";
public static final String FORMAT_10_2 = "%,10.2f";
public static final String FORMAT_10_3 = "%,10.3f";
public static final String FORMAT_10_6 = "%,10.6f";
public static final String FORMAT_11_0 = "%,11.0f";
public static final String FORMAT_11_3 = "%,11.3f";
public static final String FORMAT_13_0 = "%,13.0f";
public static final String FORMAT_13_2 = "%,13.2f";
public static final String FORMAT_14_2 = "%,14.2f";
public static final String FORMAT_14_7 = "%,14.7f";
public static final String FORMAT_15_3 = "%,15.3f";
public static final String FORMAT_16_0 = "%,16.0f";
public static final String FORMAT_16_2 = "%,16.2f";
public static final String FORMAT_17_1 = "%,17.1f";
public static final String FORMAT_DECIMAL_0 = "%,.0f";
public static final String FORMAT_DECIMAL_3 = "%,.3f";
private FloatFormats() {}
}