RawPropertyData API

<span style="font-size:24px;">public class RawPropertyData
本来用来存储component的配置信息的。一个本类的实例即存储一个component配置信息。
本类属性如下:
private String name;name为component的name属性的值。
private String className;className为component的type属性值
private Map<String, Object> properties; properties存储的是component中的property和propertylist的内容。所有的item值作为一个Object存储。即properties中的每一项为property中的name和value对或propertylist的name和propertylist所有的所有item组成的itemList(ArrayList)对。
本类的主要方法有:
1,	public RawPropertyData flatten(ConfigurationManager cm)方法的主要作用为:因为有些component使用了globalproperty中的property,那么property的value是${}形式的。而本方法是把${}形式的value改变成相应的globalproperty中property的value值。返回新的RawPropertyData。
本方法内部使用了ConfigurationManager的getGloPropReference方法和ConfigurationManagerUtils的stripGlobalSymbol方法。注意本方法的返回的RawPropertyData是一个如果原RawPropertyData的properties包含 property的为${}形式的value则把value该为对应的globalproperty中property的value值,并把改变后的值和不需该的内容都放入到返回的RawPropertyData。如原RawPropertyData中没properties包含property的为${}形式的value的内容,则就把此RawPropertyData中的properties的使用内容放入返回的RawPropertyData中。
2,对properties进行操作的方法:add,remove,contains方法
3,String getGlobalProperty(String key, Map<String, String> globalProperties)方法是返回指定globalProperties中property中的value值。
本类的构造方法:RawPropertyData(String name, String className),RawPropertyData(String name, String className, Map<String, Object> properties)</span>

你可能感兴趣的:(sphinx,语音识别)