当前位置: 首页>>代码示例>>Java>>正文


Java MemoryType.valueOf方法代码示例

本文整理汇总了Java中java.lang.management.MemoryType.valueOf方法的典型用法代码示例。如果您正苦于以下问题:Java MemoryType.valueOf方法的具体用法?Java MemoryType.valueOf怎么用?Java MemoryType.valueOf使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在java.lang.management.MemoryType的用法示例。


在下文中一共展示了MemoryType.valueOf方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: convertStringToMemoryType

import java.lang.management.MemoryType; //导入方法依赖的package包/类
/**
 * Convenience method that receives a string representation of a
 * <code>MemoryType</code> instance and returns the actual
 * <code>MemoryType</code> that corresponds to that value.
 * 
 * @param data
 *            a string
 * @return if <code>data</code> can be used to obtain an instance of
 *         <code>MemoryType</code> then a <code>MemoryType</code>,
 *         otherwise <code>null</code>.
 */
private static MemoryType convertStringToMemoryType(String data) {
    MemoryType result = null;
    try {
        result = MemoryType.valueOf(data);
    } catch (IllegalArgumentException e) {
        if (ManagementUtils.VERBOSE_MODE) {
            e.printStackTrace(System.err);
        }// end if
    }
    return result;
}
 
开发者ID:shannah,项目名称:cn1,代码行数:23,代码来源:ManagementUtils.java

示例2: getType

import java.lang.management.MemoryType; //导入方法依赖的package包/类
public MemoryType getType()
{
  return
    MemoryType.valueOf(VMMemoryPoolMXBeanImpl.getType(name));
}
 
开发者ID:vilie,项目名称:javify,代码行数:6,代码来源:MemoryPoolMXBeanImpl.java

示例3: getType

import java.lang.management.MemoryType; //导入方法依赖的package包/类
public MemoryType getType()
{
  return 
    MemoryType.valueOf(VMMemoryPoolMXBeanImpl.getType(name));
}
 
开发者ID:nmldiegues,项目名称:jvm-stm,代码行数:6,代码来源:MemoryPoolMXBeanImpl.java


注:本文中的java.lang.management.MemoryType.valueOf方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。