- Line type java lang
- Property Summary
- Properties inherited from class javafx.scene.shape.Shape
- Properties inherited from class javafx.scene.Node
- Field Summary
- Fields inherited from class javafx.scene.Node
- Constructor Summary
- Method Summary
- Methods inherited from class javafx.scene.shape.Shape
- Methods inherited from class javafx.scene.Node
- Methods inherited from class java.lang.Object
- Property Detail
- startX
- startY
- endX
- endY
- Constructor Detail
- Line
- Line
- Method Detail
- setStartX
- getStartX
- startXProperty
- setStartY
- getStartY
- startYProperty
- setEndX
- getEndX
- endXProperty
- setEndY
- getEndY
- endYProperty
- toString
- Line type java lang
- LINE_1
- LINE_2
- Line type java lang
- Class IProcedureLine.LineType
- Field Summary
- Method Summary
- Methods inherited from class java.lang.Enum
- Methods inherited from class java.lang.Object
- Field Detail
- MAP_BEGIN
- EX_UNIT_BEGIN
- EX_UNIT_MAIN
- EX_UNIT_END
- MAP_END
- MAP_CLEANUP
- Method Detail
- values
- valueOf
- Line type java lang
- LINE_STRAIGHT
- LINE_BEZIER
- LINE_POLY
- Line type java lang
- LINE_1
- LINE_2
- LINE_3
Line type java lang
import javafx.scene.shape.*; Line line = new Line(); line.setStartX(0.0f); line.setStartY(0.0f); line.setEndX(100.0f); line.setEndY(100.0f); >
Property Summary
Properties inherited from class javafx.scene.shape.Shape
Properties inherited from class javafx.scene.Node
Field Summary
Fields inherited from class javafx.scene.Node
Constructor Summary
Method Summary
Methods inherited from class javafx.scene.shape.Shape
Methods inherited from class javafx.scene.Node
Methods inherited from class java.lang.Object
Property Detail
startX
startY
endX
endY
Constructor Detail
Line
Line
public Line(double startX, double startY, double endX, double endY)
Method Detail
setStartX
public final void setStartX(double value)
getStartX
public final double getStartX()
startXProperty
setStartY
public final void setStartY(double value)
getStartY
public final double getStartY()
startYProperty
setEndX
public final void setEndX(double value)
getEndX
public final double getEndX()
endXProperty
setEndY
public final void setEndY(double value)
getEndY
public final double getEndY()
endYProperty
toString
Line type java lang
public class LineTypeextends java.awt.BasicStroke
The line type of a graphical edge representation. This class is a tame variant of java.awt.BasicStroke .
Field Summary | |
---|---|
static byte | CUSTOM_STYLE Line style specifier that describes a custom line. |
static LineType | DASHED_1 A dashed line with width 1.0 |
static LineType | DASHED_2 A dashed line with width 2.0 |
static LineType | DASHED_3 A dashed line with width 3.0 |
static LineType | DASHED_4 A dashed line with width 4.0 |
static LineType | DASHED_5 A dashed line with width 5.0 |
static LineType | DASHED_DOTTED_1 A dashed dotted line with width 1.0 |
static LineType | DASHED_DOTTED_2 A dashed dotted line with width 2.0 |
static LineType | DASHED_DOTTED_3 A dashed dotted line with width 3.0 |
static LineType | DASHED_DOTTED_4 A dashed dotted line with width 4.0 |
static LineType | DASHED_DOTTED_5 A dashed dotted line with width 5.0 |
static byte | DASHED_DOTTED_STYLE Line style specifier that describes a dashed dotted line. |
static byte | DASHED_STYLE Line style specifier that describes a dashed line. |
static LineType | DOTTED_1 A dotted line with width 1.0 |
static LineType | DOTTED_2 A dotted line with width 2.0 |
static LineType | DOTTED_3 A dotted line with width 3.0 |
static LineType | DOTTED_4 A dotted line with width 4.0 |
static LineType | DOTTED_5 A dotted line with width 5.0 |
static byte | DOTTED_STYLE Line style specifier that describes a dotted line. |
static LineType | LINE_1 A solid line with width 1.0 |
static LineType | LINE_2 A solid line with width 2.0 |
static LineType | LINE_3 A solid line with width 3.0 |
static LineType | LINE_4 A solid line with width 4.0 |
static LineType | LINE_5 A solid line with width 5.0 |
static LineType | LINE_6 A solid line with width 6.0 |
static LineType | LINE_7 A solid line with width 7.0 |
static byte | LINE_STYLE Line style specifier that describes a solid line. |
Fields inherited from class java.awt.BasicStroke |
---|
CAP_BUTT, CAP_ROUND, CAP_SQUARE, JOIN_BEVEL, JOIN_MITER, JOIN_ROUND |
Method Summary | |
---|---|
static java.util.Vector | availableLineTypes () Returns a vector that contains all available LineTypes. |
static LineType | createLineType (float width, int cap, int join, float miterlimit, float[] dash, float dashPhase) Returns a custom line type adhering to the given specifications. |
static LineType | createLineType (int width, byte style) Returns a line type with the given width and style. |
static LineType | createLineType (java.io.ObjectInput in) Returns a LineType instance whose properties have been written out before by method serializeLineType(ObjectOutput, LineType) . |
boolean | equals (java.lang.Object o) Two LineTypes are considered to be equal if all of their properties are equal. |
byte | getLineStyle () Returns the line style of this LineType. |
static LineType | getLineType (int width, byte style) Deprecated. Use method createLineType(int, byte) instead. |
int | hashCode () |
static void | serializeLineType (java.io.ObjectOutput out, LineType lt) Writes the given LineType instance to an object stream. |
Methods inherited from class java.awt.BasicStroke |
---|
createStrokedShape, getDashArray, getDashPhase, getEndCap, getLineJoin, getLineWidth, getMiterLimit |
Methods inherited from class java.lang.Object |
---|
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait |
LINE_1
LINE_2
Line type java lang
Oracle® Fusion Middleware Java API Reference for Oracle Data Integrator
12c Release 1 (12.1.2)
E39365-02
Class IProcedureLine.LineType
- java.lang.Object
-
- java.lang.Enum
-
- oracle.odi.domain.adapter.project.IProcedureLine.LineType
public static final class IProcedureLine.LineType extends java.lang.Enum
Field Summary
Line type that is executed at start of the map processing, before any specific execution unit processing.
Method Summary
Methods inherited from class java.lang.Enum
Methods inherited from class java.lang.Object
Field Detail
MAP_BEGIN
Line type that is executed at start of the map processing, before any specific execution unit processing. Setup is distinguished from MAP_BEGIN because there may be an option to skip these lines when the map is run multiple times, or run them stand-alone using a special procedure invocation command.
EX_UNIT_BEGIN
EX_UNIT_MAIN
EX_UNIT_END
MAP_END
MAP_CLEANUP
Line type indicating a cleanup line. This kind of line is executed even if a previous line gets an error.
Method Detail
values
valueOf
public static IProcedureLine.LineType valueOf(java.lang.String name)
Oracle® Fusion Middleware Java API Reference for Oracle Data Integrator
12c Release 1 (12.1.2)
E39365-02Copyright © 2010, 2014, Oracle and/or its affiliates. All rights reserved.
Line type java lang
public class LineTypeextends java.lang.Objectimplements java.io.Serializable
This class is a replacement for the yFiles LineType class.
Field Summary static LineType LINE_BEZIER static LineType LINE_ORTHO static LineType LINE_POLY static LineType LINE_STRAIGHT Constructor Summary LineType (java.lang.String name) Method Summary boolean equals (java.lang.Object o) java.lang.String getName () int getType () static LineType parseLineTypeText (java.lang.String text)
This method converts the names of linetypes, such as from a visual mappings properties file, to a LineType object.java.lang.String toString () Methods inherited from class java.lang.Object getClass, hashCode, notify, notifyAll, wait, wait, wait LINE_STRAIGHT
LINE_BEZIER
LINE_POLY
Line type java lang
The line type of a graphical edge representation. This class is a tame variant of java.awt.BasicStroke .
Field Summary static byte CUSTOM_STYLE
Line style specifier that describes a custom line.static LineType DASHED_1
A dashed line with width 1.0static LineType DASHED_2
A dashed line with width 2.0static LineType DASHED_3
A dashed line with width 3.0static LineType DASHED_4
A dashed line with width 4.0static LineType DASHED_5
A dashed line with width 5.0static byte DASHED_STYLE
Line style specifier that describes a dashed line.static LineType DOTTED_1
A dotted line with width 1.0static LineType DOTTED_2
A dotted line with width 2.0static LineType DOTTED_3
A dotted line with width 3.0static LineType DOTTED_4
A dotted line with width 4.0static LineType DOTTED_5
A dotted line with width 5.0static byte DOTTED_STYLE
Line style specifier that describes a dotted line.static LineType LINE_1
A solid line with width 1.0static LineType LINE_2
A solid line with width 2.0static LineType LINE_3
A solid line with width 3.0static LineType LINE_4
A solid line with width 4.0static LineType LINE_5
A solid line with width 5.0static LineType LINE_6
A solid line with width 6.0static LineType LINE_7
A solid line with width 7.0static byte LINE_STYLE
Line style specifier that describes a solid line.Fields inherited from class java.awt.BasicStroke CAP_BUTT, CAP_ROUND, CAP_SQUARE, JOIN_BEVEL, JOIN_MITER, JOIN_ROUND Method Summary static Vector availableLineTypes ()
Returns a vector that contains all available LineTypes.static LineType createLineType (float width, int cap, int join, float miterlimit, float[] dash, float dashPhase)
Returns a custom line type adhering to the given specifications.static LineType createLineType (ObjectInputStream in)
Returns a LineType instance whose properties have been written out before by method LineType.serializeLineType(ObjectOutputStream, LineType) .boolean equals (Object o)
Two LineTypes are considered to be equal if all of their properties are equal.byte getLineStyle ()
Returns the line style of this LineType.static LineType getLineType (int width, byte style)
Returns one of the predefined LineType objects that matches the given width and style best.int hashCode () static void serializeLineType (ObjectOutputStream out, LineType lt)
Writes the given LineType instance to an object stream.Methods inherited from class java.awt.BasicStroke createStrokedShape, getDashArray, getDashPhase, getEndCap, getLineJoin, getLineWidth, getMiterLimit Methods inherited from class java.lang.Object clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait LINE_1
LINE_2
LINE_3