public static final enum

PreserveAspectRatio.Scale

extends Enum<E extends Enum<E>>
java.lang.Object
   ↳ java.lang.Enum<E extends java.lang.Enum<E>>
     ↳ com.caverock.androidsvg.PreserveAspectRatio.Scale

Class Overview

Determine whether the scaled document fills the viewport entirely or is scaled to fill the viewport without overflowing.

Summary

Enum Values
PreserveAspectRatio.Scale  Meet  The document is scaled so that it is as large as possible without overflowing the viewport. 
PreserveAspectRatio.Scale  Slice  The document is scaled so that entirely fills the viewport. 
Public Methods
static PreserveAspectRatio.Scale valueOf(String name)
final static Scale[] values()
[Expand]
Inherited Methods
From class java.lang.Enum
From class java.lang.Object
From interface java.lang.Comparable

Enum Values

public static final PreserveAspectRatio.Scale Meet

The document is scaled so that it is as large as possible without overflowing the viewport. There may be blank areas on one or more sides of the document.

public static final PreserveAspectRatio.Scale Slice

The document is scaled so that entirely fills the viewport. That means that some of the document may fall outside the viewport and will not be rendered.

Public Methods

public static PreserveAspectRatio.Scale valueOf (String name)

public static final Scale[] values ()