public static enum AccessibilityProfile.FontSize extends Enum<AccessibilityProfile.FontSize>
| Enum Constant and Description | 
|---|
| LARGEFont size value for users who prefer larger font sizes. | 
| MEDIUMFont size value for users who prefer the default (medium) font sizes. | 
| Modifier and Type | Method and Description | 
|---|---|
| static AccessibilityProfile.FontSize | valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static AccessibilityProfile.FontSize[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final AccessibilityProfile.FontSize LARGE
public static final AccessibilityProfile.FontSize MEDIUM
public static AccessibilityProfile.FontSize[] values()
for (AccessibilityProfile.FontSize c : AccessibilityProfile.FontSize.values()) System.out.println(c);
public static AccessibilityProfile.FontSize valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2001-2017 The Apache Software Foundation. All Rights Reserved.