|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<QLineF.IntersectType>
com.trolltech.qt.gui.QLineF.IntersectType
public static enum QLineF.IntersectType
Describes the intersection between two lines.
![]() | ![]() |
QLineF::UnboundedIntersection | QLineF::BoundedIntersection |
Enum Constant Summary | |
---|---|
BoundedIntersection
The two lines intersect with each other within the start and end points of each line. |
|
NoIntersection
Indicates that the lines do not intersect; i.e. they are parallel. |
|
UnboundedIntersection
The two lines intersect, but not within the range defined by their lengths. |
Method Summary | |
---|---|
static QLineF.IntersectType |
resolve(int value)
|
int |
value()
|
static QLineF.IntersectType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static QLineF.IntersectType[] |
values()
Returns an array containing the constants of this enum type, in the order they're declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
finalize, getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final QLineF.IntersectType NoIntersection
Indicates that the lines do not intersect; i.e. they are parallel.
public static final QLineF.IntersectType BoundedIntersection
The two lines intersect with each other within the start and end points of each line.
public static final QLineF.IntersectType UnboundedIntersection
The two lines intersect, but not within the range defined by their lengths. This will be the case if the lines are not parallel.
Method Detail |
---|
public static final QLineF.IntersectType[] values()
for(QLineF.IntersectType c : QLineF.IntersectType.values()) System.out.println(c);
public static QLineF.IntersectType valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.
java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified namepublic int value()
value
in interface QtEnumerator
public static QLineF.IntersectType resolve(int value)
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |