Package com.adobe.internal.io
Class ByteWriterFactory.Longevity
- java.lang.Object
-
- com.adobe.internal.io.ByteWriterFactory.Longevity
-
- Enclosing interface:
- ByteWriterFactory
public static class ByteWriterFactory.Longevity extends java.lang.Object
An enumeration for the anticipated longevity of a requested instance.
-
-
Field Summary
Fields Modifier and Type Field Description static ByteWriterFactory.Longevity
LONG
Anticipated lifetime is approximately that of the document being processed.static ByteWriterFactory.Longevity
PERMANENT
Anticipated lifetime is beyond that of the document being processed.static ByteWriterFactory.Longevity
SHORT
Anticipated lifetime is from about a single method call up to several method calls.static ByteWriterFactory.Longevity
TEMPORARY
Anticipated lifetime is below that of a single method call.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description int
getId()
java.lang.String
name()
Get the name of the generic family.static ByteWriterFactory.Longevity
parse(java.lang.String s)
-
-
-
Field Detail
-
TEMPORARY
public static final ByteWriterFactory.Longevity TEMPORARY
Anticipated lifetime is below that of a single method call.
-
SHORT
public static final ByteWriterFactory.Longevity SHORT
Anticipated lifetime is from about a single method call up to several method calls.
-
LONG
public static final ByteWriterFactory.Longevity LONG
Anticipated lifetime is approximately that of the document being processed.
-
PERMANENT
public static final ByteWriterFactory.Longevity PERMANENT
Anticipated lifetime is beyond that of the document being processed.
-
-
Method Detail
-
name
public java.lang.String name()
Get the name of the generic family.- Returns:
- the name of the generic family
-
parse
public static ByteWriterFactory.Longevity parse(java.lang.String s)
-
getId
public int getId()
-
-