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

 Enum for controlling the layout of html.
 <ul>
   <li>NORMAL means no rendering changes. This is the recommended choice for maximum
       compatibility across different platforms and Android versions.</li>
   <li>SINGLE_COLUMN moves all content into one column that is the width of the
       view.</li>
   <li>NARROW_COLUMNS makes all columns no wider than the screen if possible. Only use
       this for API levels prior to {@link android.os.Build.VERSION_CODES#KITKAT}.</li>
   <li>TEXT_AUTOSIZING boosts font size of paragraphs based on heuristics to make
       the text readable when viewing a wide-viewport layout in the overview mode.
       It is recommended to enable zoom support {@link #setSupportZoom} when
       using this mode. Supported from API level
       {@link android.os.Build.VERSION_CODES#KITKAT}</li>
 </ul>
*/
var LayoutAlgorithm = {

/***/
NORMAL : "null",
/** @deprecated This algorithm is now obsolete.
*/
SINGLE_COLUMN : "null",
/** @deprecated This algorithm is now obsolete.
*/
NARROW_COLUMNS : "null",
/***/
TEXT_AUTOSIZING : "null",
/**
*/
values : function(  ) {},

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


};