|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object javax.media.jai.EnumeratedParameter org.geotools.ct.DomainFlags
Flags indicating parts of domain covered by a convex hull.
These flags can be combined. For example, the enum
means that some parts of the convex hull are inside the domain,
and some parts of the convex hull are outside the domain.
INSIDE
.or(OUTSIDE
)
CT_DomainFlags
,
Serialized FormField Summary | |
static DomainFlags |
DISCONTINUOUS
Deprecated. At least one point in a convex hull is not transformed continuously. |
static DomainFlags |
INSIDE
Deprecated. At least one point in a convex hull is inside the transform's domain. |
static DomainFlags |
OUTSIDE
Deprecated. At least one point in a convex hull is outside the transform's domain. |
Method Summary | |
static DomainFlags |
getEnum(int value)
Deprecated. Return the enum for the specified value. |
java.lang.String[] |
getNames(java.util.Locale locale)
Deprecated. Returns enum's names in the specified locale. |
DomainFlags |
or(DomainFlags flags)
Deprecated. Returns a combination of two domain flags. |
Methods inherited from class javax.media.jai.EnumeratedParameter |
equals, getName, getValue, hashCode, toString |
Methods inherited from class java.lang.Object |
clone, finalize, getClass, notify, notifyAll, wait, wait, wait |
Field Detail |
public static final DomainFlags INSIDE
CT_DomainFlags.CT_DF_Inside
public static final DomainFlags OUTSIDE
CT_DomainFlags.CT_DF_Outside
public static final DomainFlags DISCONTINUOUS
CT_DomainFlags.CT_DF_Discontinuous
Method Detail |
public static DomainFlags getEnum(int value) throws java.util.NoSuchElementException
CT_DomainFlags
.
value
- The enum value.
java.util.NoSuchElementException
- if there is no enum for the specified value.public java.lang.String[] getNames(java.util.Locale locale)
getNames
returns an array of two elements: "Inside" and "Outside".
locale
- The locale, or null
for the current default locale.
null
).public DomainFlags or(DomainFlags flags)
getEnum(this.getValue() | flags.getValue())
.
|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |