public static enum OptimizedMemoryStream.SeekOrigin extends Enum<OptimizedMemoryStream.SeekOrigin>
Enum Constant and Description |
---|
Begin
Specifies the beginning of a stream.
|
Current
Specifies the current position within a stream.
|
End
Specifies the end of a stream.
|
Modifier and Type | Method and Description |
---|---|
static OptimizedMemoryStream.SeekOrigin |
getByValue(int value) |
int |
getValue() |
static OptimizedMemoryStream.SeekOrigin |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static OptimizedMemoryStream.SeekOrigin[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OptimizedMemoryStream.SeekOrigin Begin
public static final OptimizedMemoryStream.SeekOrigin Current
public static final OptimizedMemoryStream.SeekOrigin End
public static OptimizedMemoryStream.SeekOrigin[] values()
for (OptimizedMemoryStream.SeekOrigin c : OptimizedMemoryStream.SeekOrigin.values()) System.out.println(c);
public static OptimizedMemoryStream.SeekOrigin 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 nullpublic int getValue()
public static OptimizedMemoryStream.SeekOrigin getByValue(int value)
Copyright © 2025 Aspose. All Rights Reserved.