|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
java.lang.Objectjetbrains.buildServer.web.openapi.PositionConstraint
public abstract class PositionConstraint
Represents extension position constraints within single page place
| Field Summary | |
|---|---|
static PositionConstraint |
UNDEFINED
|
| Method Summary | |
|---|---|
static PositionConstraint |
after(java.lang.String... ids)
Indicates that extension must be placed after other extensions with specified identifiers (plugin names) |
static PositionConstraint |
before(java.lang.String... ids)
Indicates that extension must be placed before other extensions with specified identifiers (plugin names) |
static PositionConstraint |
between(java.util.Collection<java.lang.String> afterIds,
java.util.Collection<java.lang.String> beforeIds)
Indicates that extension must be placed between other extensions. |
abstract PositionConstraint |
convert()
|
static PositionConstraint |
first()
Indicates that extension must be the first. |
static PositionConstraint |
last()
Indicates that extension must be the last. |
abstract java.lang.String |
toString()
Human readable presentation of the constraint. |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
| Methods inherited from interface java.lang.Comparable |
|---|
compareTo |
| Field Detail |
|---|
public static final PositionConstraint UNDEFINED
| Method Detail |
|---|
@NotNull public static PositionConstraint first()
@NotNull public static PositionConstraint last()
@NotNull
public static PositionConstraint before(@NotNull
java.lang.String... ids)
ids - extensions identifiers (plugin names)
@NotNull
public static PositionConstraint after(@NotNull
java.lang.String... ids)
ids - extensions identifiers (plugin names)
@NotNull
public static PositionConstraint between(@NotNull
java.util.Collection<java.lang.String> afterIds,
@NotNull
java.util.Collection<java.lang.String> beforeIds)
afterIds - the extension will be placed after the extensions with provided idsbeforeIds - the extension will be placed before the extensions with provided ids
public abstract java.lang.String toString()
toString in class java.lang.Objectpublic abstract PositionConstraint convert()
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||