Enum Class IStreamViewMapping.PathType
- All Implemented Interfaces:
Serializable,Comparable<IStreamViewMapping.PathType>,Constable
- Enclosing interface:
- IStreamViewMapping
share: <view_path> will be included in client views and in branch views.
Files in this path are accessible to workspaces, can be submitted to the
stream, and can be integrated with the parent stream.
isolate: <view_path> will be included in client views but not in branch
views. Files in this path are accessible to workspaces, can be submitted
to the stream, but are not integratable with the parent stream.
import: <view_path> will be included in client views but not in branch
views. Files in this path are mapped as in the parent stream's view (the
default) or to <depot_path> (optional); they are accessible to
workspaces, but can not be submitted or integrated to the stream.
exclude: <view_path> will be excluded from client views and branch views.
Files in this path are not accessible to workspaces, and can't be
submitted or integrated to the stream.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum Constants -
Method Summary
Modifier and TypeMethodDescriptionstatic IStreamViewMapping.PathTypefromString(String str) Return a suitable Path type as inferred from the passed-in string, which is assumed to be the string form of a Path type.getValue()toString()static IStreamViewMapping.PathTypeReturns the enum constant of this class with the specified name.static IStreamViewMapping.PathType[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
SHARE
-
ISOLATE
-
IMPORT
-
IMPORTPLUS
-
EXCLUDE
-
UNKNOWN
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum class has no constant with the specified nameNullPointerException- if the argument is null
-
getValue
-
toString
- Overrides:
toStringin classEnum<IStreamViewMapping.PathType>
-
fromString
Return a suitable Path type as inferred from the passed-in string, which is assumed to be the string form of a Path type. Otherwise return the UNKNOWN type- Parameters:
str- str- Returns:
- PathType
-