org.apache.wicket.util.lang.Bytes.gigabytes()方法的使用及代码示例

x33g5p2x  于2022-01-16 转载在 其他  
字(3.3k)|赞(0)|评价(0)|浏览(75)

本文整理了Java中org.apache.wicket.util.lang.Bytes.gigabytes()方法的一些代码示例,展示了Bytes.gigabytes()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Bytes.gigabytes()方法的具体详情如下:
包路径:org.apache.wicket.util.lang.Bytes
类名称:Bytes
方法名:gigabytes

Bytes.gigabytes介绍

[英]Gets the byte count in gigabytes.
[中]获取以GB为单位的字节计数。

代码示例

代码示例来源:origin: org.apache.wicket/com.springsource.org.apache.wicket

/**
 * Gets the byte count in terabytes.
 * 
 * @return The value in terabytes
 */
public final double terabytes()
{
  return gigabytes() / 1024.0;
}

代码示例来源:origin: org.apache.wicket/com.springsource.org.apache.wicket

/**
 * Instantiate immutable Bytes value object..
 * 
 * @param terabytes
 *            Value to convert
 * @return Input as Bytes
 */
public static Bytes terabytes(final double terabytes)
{
  return gigabytes(terabytes * 1024.0);
}

代码示例来源:origin: org.apache.wicket/wicket-util

/**
 * Instantiate immutable Bytes value object..
 * 
 * @param terabytes
 *            Value to convert
 * @return Input as Bytes
 */
public static Bytes terabytes(final double terabytes)
{
  return gigabytes(terabytes * 1024.0);
}

代码示例来源:origin: org.ops4j.pax.wicket/pax-wicket-service

/**
 * Instantiate immutable Bytes value object..
 * 
 * @param terabytes
 *            Value to convert
 * @return Input as Bytes
 */
public static Bytes terabytes(final double terabytes)
{
  return gigabytes(terabytes * 1024.0);
}

代码示例来源:origin: org.ops4j.pax.wicket/pax-wicket-service

/**
 * Gets the byte count in terabytes.
 * 
 * @return The value in terabytes
 */
public final double terabytes()
{
  return gigabytes() / 1024.0;
}

代码示例来源:origin: org.apache.wicket/wicket-util

/**
 * Instantiate immutable Bytes value object..
 * 
 * @param terabytes
 *            Value to convert
 * @return Input as Bytes
 */
public static Bytes terabytes(final long terabytes)
{
  return gigabytes(terabytes * 1024);
}

代码示例来源:origin: org.apache.wicket/wicket-util

/**
 * Gets the byte count in terabytes.
 * 
 * @return The value in terabytes
 */
public final double terabytes()
{
  return gigabytes() / 1024.0;
}

代码示例来源:origin: org.ops4j.pax.wicket/pax-wicket-service

/**
 * Instantiate immutable Bytes value object..
 * 
 * @param terabytes
 *            Value to convert
 * @return Input as Bytes
 */
public static Bytes terabytes(final long terabytes)
{
  return gigabytes(terabytes * 1024);
}

代码示例来源:origin: org.apache.wicket/com.springsource.org.apache.wicket

/**
 * Instantiate immutable Bytes value object..
 * 
 * @param terabytes
 *            Value to convert
 * @return Input as Bytes
 */
public static Bytes terabytes(final long terabytes)
{
  return gigabytes(terabytes * 1024);
}

代码示例来源:origin: org.apache.wicket/com.springsource.org.apache.wicket

return gigabytes(value);

代码示例来源:origin: org.apache.wicket/wicket-util

return gigabytes(value);

代码示例来源:origin: org.ops4j.pax.wicket/pax-wicket-service

return gigabytes(value);

代码示例来源:origin: org.apache.wicket/wicket-util

/**
 * Converts this byte count to a string using the given locale.
 * 
 * @param locale
 *            Locale to use for conversion
 * @return The string for this byte count
 */
public String toString(final Locale locale)
{
  if (terabytes() >= 1.0)
  {
    return unitString(terabytes(), "TB", locale);
  }
  if (gigabytes() >= 1.0)
  {
    return unitString(gigabytes(), "GB", locale);
  }
  if (megabytes() >= 1.0)
  {
    return unitString(megabytes(), "MB", locale);
  }
  if (kilobytes() >= 1.0)
  {
    return unitString(kilobytes(), "KB", locale);
  }
  return Long.toString(value) + " bytes";
}

代码示例来源:origin: org.ops4j.pax.wicket/pax-wicket-service

if (gigabytes() >= 1.0)
  return unitString(gigabytes(), "G", locale);

代码示例来源:origin: org.apache.wicket/com.springsource.org.apache.wicket

if (gigabytes() >= 1.0)
  return unitString(gigabytes(), "G", locale);

相关文章