/**@class android.webkit.WebSettings.PluginState
@extends java.lang.Enum

 The plugin state effects how plugins are treated on a page. ON means
 that any object will be loaded even if a plugin does not exist to handle
 the content. ON_DEMAND means that if there is a plugin installed that
 can handle the content, a placeholder is shown until the user clicks on
 the placeholder. Once clicked, the plugin will be enabled on the page.
 OFF means that all plugins will be turned off and any fallback content
 will be used.
*/
var PluginState = {

/***/
ON : "null",
/***/
ON_DEMAND : "null",
/***/
OFF : "null",
/**
*/
values : function(  ) {},

/**
*/
valueOf : function(  ) {},


};