本文整理汇总了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;
}
示例2: getType
import java.lang.management.MemoryType; //导入方法依赖的package包/类
public MemoryType getType()
{
return
MemoryType.valueOf(VMMemoryPoolMXBeanImpl.getType(name));
}
示例3: getType
import java.lang.management.MemoryType; //导入方法依赖的package包/类
public MemoryType getType()
{
return
MemoryType.valueOf(VMMemoryPoolMXBeanImpl.getType(name));
}