?? serviceinformationtype.java
字號:
package javax.tv.service;
public class ServiceInformationType extends java.lang.Object {
public static final ServiceInformationType ATSC_PSIP = new ServiceInformationType("ATSC_PSIP");
public static final ServiceInformationType DVB_SI = new ServiceInformationType("DVB_SI");
public static final ServiceInformationType SCTE_SI = new ServiceInformationType("SCTE_SI");
public static final ServiceInformationType UNKNOWN = new ServiceInformationType("UNKNOWN");
private String name;
protected ServiceInformationType(java.lang.String name) {
this.name = name;
}
public java.lang.String toString() {
return name;
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -