Package org.apache.poi.hslf.record
Enum DocumentAtom.SlideSize
- All Implemented Interfaces:
Serializable,Comparable<DocumentAtom.SlideSize>,java.lang.constant.Constable
- Enclosing class:
DocumentAtom
Holds the different Slide Size values
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionSlide size ratio is consistent with A4 paper.Slide size ratio is consistent with a banner.Slide size ratio that is not consistent with any of the other specified slide sizes in this enumeration.Slide size ratio is consistent with letter paper.Slide size ratio is consistent with 35mm photo slides.Slide size ratio is consistent with a computer screen.Slide size ratio is consistent with overhead projector slides. -
Method Summary
Modifier and TypeMethodDescriptionstatic DocumentAtom.SlideSizeReturns the enum constant of this type with the specified name.static DocumentAtom.SlideSize[]values()Returns an array containing the constants of this enum type, in the order they are declared.Methods inherited from class java.lang.Enum
compareTo, describeConstable, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
-
Enum Constant Details
-
ON_SCREEN
Slide size ratio is consistent with a computer screen. -
LETTER_SIZED_PAPER
Slide size ratio is consistent with letter paper. -
A4_SIZED_PAPER
Slide size ratio is consistent with A4 paper. -
ON_35MM
Slide size ratio is consistent with 35mm photo slides. -
OVERHEAD
Slide size ratio is consistent with overhead projector slides. -
BANNER
Slide size ratio is consistent with a banner. -
CUSTOM
Slide size ratio that is not consistent with any of the other specified slide sizes in this enumeration.
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-