首页 > 代码库 > org.apache.hadoop.conf-Configurable
org.apache.hadoop.conf-Configurable
从包名可以看出这个包里面都是配置相关的类;从类名上可以看出这是一个接口,或者说配置类接口。内容很少。
1 package org.apache.hadoop.conf; 2 3 /** Something that may be configured with a {@link Configuration}. */ 4 public interface Configurable { 5 6 /** Set the configuration to be used by this object. */ 7 void setConf(Configuration conf); 8 9 /** Return the configuration used by this object. */10 Configuration getConf();11 }
子接口或者实现它的类有:
其中Configured类就是同包下的,算是最亲的一个孩子
没什么好看的
org.apache.hadoop.conf-Configurable
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。