/**
* Retrieves and deserializes the object stored at the given key.
* @return The deserialized object.
* @throws IOException if the object cannot be deserialized.
* @throws ClassNotFoundException if the class of the serialized object
* cannot be loaded.
**/
public static MBeanFeatureInfo get(String name)
throws IOException, ClassNotFoundException {
final byte[] bytes = map.get(name);
final Object obj = deserialize(bytes);
return (MBeanFeatureInfo)obj;
}
MBeanFeatureInfoSerialStore.java 文件源码
java
阅读 18
收藏 0
点赞 0
评论 0
项目:openjdk-jdk10
作者:
评论列表
文章目录