public enum StitchMode extends Enum<StitchMode>
| Enum Constant and Description |
|---|
CSS
CSS translation based stitching.
|
RESIZE
Resize based full-content.
|
SCROLL
Standard JS scrolling.
|
| Modifier and Type | Method and Description |
|---|---|
String |
getName() |
static StitchMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StitchMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StitchMode SCROLL
public static final StitchMode CSS
public static final StitchMode RESIZE
public static StitchMode[] values()
for (StitchMode c : StitchMode.values()) System.out.println(c);
public static StitchMode 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 String getName()
Copyright © 2023. All rights reserved.