public final enum

UrlMode

extends Enum<E extends Enum<E>>
java.lang.Object
   ↳ java.lang.Enum<E extends java.lang.Enum<E>>
     ↳ com.atlassian.stash.markup.UrlMode

Class Overview

A formatting mode for URLs. Used to specify to MarkupService method what to do with generated URLs.

Summary

Enum Values
UrlMode  ABSOLUTE  Absolute URL format, with URL scheme, hostname, port (if non-standard for the scheme), and context path. 
UrlMode  CONFIGURED  Configured URL format, always uses the system settings. 
UrlMode  RELATIVE  Relative URL format, containing just the context path. 
Public Methods
static UrlMode valueOf(String name)
final static UrlMode[] values()
[Expand]
Inherited Methods
From class java.lang.Enum
From class java.lang.Object
From interface java.lang.Comparable

Enum Values

public static final UrlMode ABSOLUTE

Absolute URL format, with URL scheme, hostname, port (if non-standard for the scheme), and context path.

public static final UrlMode CONFIGURED

Configured URL format, always uses the system settings.

public static final UrlMode RELATIVE

Relative URL format, containing just the context path.

Public Methods

public static UrlMode valueOf (String name)

public static final UrlMode[] values ()