當前位置: 首頁>>代碼示例>>Java>>正文


Java DisplayType類代碼示例

本文整理匯總了Java中com.smartdevicelink.proxy.rpc.enums.DisplayType的典型用法代碼示例。如果您正苦於以下問題:Java DisplayType類的具體用法?Java DisplayType怎麽用?Java DisplayType使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


DisplayType類屬於com.smartdevicelink.proxy.rpc.enums包,在下文中一共展示了DisplayType類的6個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: testListEnum

import com.smartdevicelink.proxy.rpc.enums.DisplayType; //導入依賴的package包/類
/**
 * Verifies the possible enum values of DisplayType.
 */
public void testListEnum() {
	List<DisplayType> enumValueList = Arrays.asList(DisplayType.values());

	List<DisplayType> enumTestList = new ArrayList<DisplayType>();
	enumTestList.add(DisplayType.CID);
	enumTestList.add(DisplayType.TYPE2);
	enumTestList.add(DisplayType.TYPE5);
	enumTestList.add(DisplayType.NGN);
	enumTestList.add(DisplayType.GEN2_8_DMA);
	enumTestList.add(DisplayType.GEN2_6_DMA);
	enumTestList.add(DisplayType.MFD3);
	enumTestList.add(DisplayType.MFD4);
	enumTestList.add(DisplayType.MFD5);
	enumTestList.add(DisplayType.GEN3_8_INCH);
	enumTestList.add(DisplayType.SDL_GENERIC);

	assertTrue("Enum value list does not match enum class list",
			enumValueList.containsAll(enumTestList) && enumTestList.containsAll(enumValueList));
}
 
開發者ID:smartdevicelink,項目名稱:sdl_android,代碼行數:23,代碼來源:DisplayTypeTests.java

示例2: testValidEnums

import com.smartdevicelink.proxy.rpc.enums.DisplayType; //導入依賴的package包/類
/**
 * Verifies that the enum values are not null upon valid assignment.
 */
public void testValidEnums () {
	String example = "CID";
	DisplayType enumCid = DisplayType.valueForString(example);
	example = "TYPE2";
	DisplayType enumType2 = DisplayType.valueForString(example);
	example = "TYPE5";
	DisplayType enumType5 = DisplayType.valueForString(example);
	example = "NGN";
	DisplayType enumNgn = DisplayType.valueForString(example);
	example = "GEN2_8_DMA";
	DisplayType enumGen2_8Dma = DisplayType.valueForString(example);
	example = "GEN2_6_DMA";
	DisplayType enumGen2_6Dma = DisplayType.valueForString(example);
	example = "MFD3";
	DisplayType enumMfd3 = DisplayType.valueForString(example);
	example = "MFD4";
	DisplayType enumMfd4 = DisplayType.valueForString(example);
	example = "MFD5";
	DisplayType enumMfd5 = DisplayType.valueForString(example);
	example = "GEN3_8-INCH";
	DisplayType enumGen3_8Inch = DisplayType.valueForString(example);
	example = "SDL_GENERIC";
	DisplayType enumGeneric = DisplayType.valueForString(example);

	assertNotNull("CID returned null", enumCid);
	assertNotNull("TYPE2 returned null", enumType2);
	assertNotNull("TYPE5 returned null", enumType5);
	assertNotNull("NGN returned null", enumNgn);
	assertNotNull("GEN2_8_DMA returned null", enumGen2_8Dma);
	assertNotNull("GEN2_6_DMA returned null", enumGen2_6Dma);
	assertNotNull("MFD3 returned null", enumMfd3);
	assertNotNull("MFD4 returned null", enumMfd4);
	assertNotNull("MFD5 returned null", enumMfd5);
	assertNotNull("GEN3_8-INCH returned null", enumGen3_8Inch);
	assertNotNull("SDL_GENERIC returned null", enumGeneric);
}
 
開發者ID:smartdevicelink,項目名稱:sdl_android,代碼行數:40,代碼來源:DisplayTypeTests.java

示例3: testInvalidEnum

import com.smartdevicelink.proxy.rpc.enums.DisplayType; //導入依賴的package包/類
/**
 * Verifies that an invalid assignment is null.
 */
public void testInvalidEnum () {
	String example = "cId";
	try {
		DisplayType temp = DisplayType.valueForString(example);
		assertNull("Result of valueForString should be null.", temp);
	}
	catch (IllegalArgumentException exception) {
		fail("Invalid enum throws IllegalArgumentException.");
	}
}
 
開發者ID:smartdevicelink,項目名稱:sdl_android,代碼行數:14,代碼來源:DisplayTypeTests.java

示例4: testNullEnum

import com.smartdevicelink.proxy.rpc.enums.DisplayType; //導入依賴的package包/類
/**
 * Verifies that a null assignment is invalid.
 */
public void testNullEnum () {
	String example = null;
	try {
		DisplayType temp = DisplayType.valueForString(example);
		assertNull("Result of valueForString should be null.", temp);
	}
	catch (NullPointerException exception) {
		fail("Null string throws NullPointerException.");
	}
}
 
開發者ID:smartdevicelink,項目名稱:sdl_android,代碼行數:14,代碼來源:DisplayTypeTests.java

示例5: getDisplayType

import com.smartdevicelink.proxy.rpc.enums.DisplayType; //導入依賴的package包/類
/**
 * Get the type of display
 * @return the type of display
 */    
public DisplayType getDisplayType() {
    return (DisplayType) getObject(DisplayType.class, KEY_DISPLAY_TYPE);
}
 
開發者ID:smartdevicelink,項目名稱:sdl_android,代碼行數:8,代碼來源:DisplayCapabilities.java

示例6: setDisplayType

import com.smartdevicelink.proxy.rpc.enums.DisplayType; //導入依賴的package包/類
/**
 * Set the type of display
 * @param displayType the display type
 */    
public void setDisplayType( DisplayType displayType ) {
    setValue(KEY_DISPLAY_TYPE, displayType);
}
 
開發者ID:smartdevicelink,項目名稱:sdl_android,代碼行數:8,代碼來源:DisplayCapabilities.java


注:本文中的com.smartdevicelink.proxy.rpc.enums.DisplayType類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。