Class Anchor
- java.lang.Object
-
- com.cdancy.bitbucket.rest.domain.comment.Anchor
-
public abstract class Anchor extends Object
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classAnchor.FileTypestatic classAnchor.LineType
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description static Anchorcreate(Integer line, Anchor.LineType lineType, Anchor.FileType fileType, String path, String srcPath)static Anchorcreate(Integer line, String lineType, String fileType, String path, String srcPath)abstract StringfileType()abstract Integerline()abstract StringlineType()abstract Stringpath()abstract StringsrcPath()
-
-
-
Method Detail
-
line
@Nullable public abstract Integer line()
-
lineType
@Nullable public abstract String lineType()
-
fileType
@Nullable public abstract String fileType()
-
path
public abstract String path()
-
srcPath
@Nullable public abstract String srcPath()
-
create
public static Anchor create(Integer line, Anchor.LineType lineType, Anchor.FileType fileType, String path, String srcPath)
-
-