![]() |
Paradox Game Engine
v1.0.0 beta06
|
A Storage qualifier. More...
Public Member Functions | |
ParameterQualifier () | |
Initializes a new instance of the ParameterQualifier class. More... | |
ParameterQualifier (string key) | |
Initializes a new instance of the ParameterQualifier class. More... | |
![]() | |
Qualifier () | |
Initializes a new instance of the Qualifier class. More... | |
string | ToString (bool isPost) |
![]() | |
CompositeEnum () | |
Initializes a new instance of the CompositeEnum class. More... | |
CompositeEnum (bool isFlag) | |
Initializes a new instance of the CompositeEnum class. More... | |
CompositeEnum (object key, bool isFlag) | |
Initializes a new instance of the CompositeEnum class. More... | |
bool | Contains (CompositeEnum enumValue) |
Determines whether [contains] [the specified enum value]. More... | |
bool | Contains (params CompositeEnum[] enumValues) |
Determines whether [contains] [the specified enum values]. More... | |
bool | ContainsAll (params CompositeEnum[] enumValues) |
Determines whether the specified enum values contains all. More... | |
bool | Equals (CompositeEnum other) |
Determines whether the specified CompositeEnum is equal to this instance. More... | |
override bool | Equals (object obj) |
override int | GetHashCode () |
IEnumerator< CompositeEnum > | GetEnumerator () |
override string | ToString () |
string | ToString< T > (Func< T, bool > filterEnum) |
override IEnumerable< Node > | Childrens () |
Gets the child nodes.
| |
![]() | |
override bool | Equals (object against) |
override int | GetHashCode () |
object | GetTag (object tagKey) |
Gets a tag value associated to this node.. More... | |
bool | RemoveTag (object tagKey) |
Gets a tag value associated to this node.. More... | |
bool | ContainsTag (object tagKey) |
Determines whether the specified instance contains this tag. More... | |
void | SetTag (object tagKey, object tagValue) |
Sets a tag value associated to this node. More... | |
override string | ToString () |
Static Public Member Functions | |
static ParameterQualifier | Parse (string enumName) |
Parses the specified enum name. More... | |
![]() | |
static Qualifier | operator& (Qualifier left, Qualifier right) |
Implements the operator ==. More... | |
static Qualifier | operator| (Qualifier left, Qualifier right) |
Implements the operator |. More... | |
static Qualifier | operator^ (Qualifier left, Qualifier right) |
Implements the operator ^. More... | |
![]() | |
static T1 | OperatorAnd< T1 > (T1 left, T1 right) |
Operators And. More... | |
static T1 | OperatorOr< T1 > (T1 left, T1 right) |
Operators Or. More... | |
static T1 | OperatorXor< T1 > (T1 left, T1 right) |
Operators Xor. More... | |
static bool | operator== (CompositeEnum left, CompositeEnum right) |
Implements the operator ==. More... | |
static bool | operator!= (CompositeEnum left, CompositeEnum right) |
Implements the operator !=. More... | |
![]() | |
static bool | operator== (Node left, Node right) |
static bool | operator!= (Node left, Node right) |
Static Public Attributes | |
static readonly ParameterQualifier | In = new ParameterQualifier("in") |
In modifier, only for method parameters. More... | |
static readonly ParameterQualifier | InOut = new ParameterQualifier("inout") |
InOut Modifier, only for method parameters. More... | |
static readonly ParameterQualifier | Out = new ParameterQualifier("out") |
Out modifier, only for method parameters. More... | |
![]() | |
static readonly Qualifier | None = new Qualifier(string.Empty) |
None Enum. More... | |
Additional Inherited Members | |
![]() | |
Qualifier (object key) | |
Initializes a new instance of the Qualifier class. More... | |
![]() | |
Node () | |
Initializes a new instance of the Node class. More... | |
![]() | |
static StringEnumMap | PrepareParsing< T > () |
Prepares the parsing for a specific enum by returning a pre-computed dictionary with all allowed mapping name => enum. More... | |
![]() | |
bool | IsPost [get, set] |
Gets or sets a value indicating whether this instance is a post qualifier. More... | |
![]() | |
bool | IsComposition [get] |
Gets a value indicating whether this instance is a composition enum (a combination of enums). More... | |
bool | IsFlag [get, set] |
Gets a value indicating whether this instance is an enum flag. More... | |
object | Key [get, set] |
Gets or sets the key. More... | |
OrderedSet< CompositeEnum > | Values [get, set] |
Gets or sets the values. More... | |
virtual string | DisplayName [get] |
Gets the display name. More... | |
![]() | |
SourceSpan | Span [get, set] |
Gets or sets the source span. More... | |
List< Node > | ChildrenList [get] |
Gets the childrens. More... | |
A Storage qualifier.
Definition at line 10 of file ParameterQualifier.cs.
SiliconStudio.Shaders.Ast.ParameterQualifier.ParameterQualifier | ( | ) |
Initializes a new instance of the ParameterQualifier class.
Definition at line 41 of file ParameterQualifier.cs.
SiliconStudio.Shaders.Ast.ParameterQualifier.ParameterQualifier | ( | string | key | ) |
Initializes a new instance of the ParameterQualifier class.
key | Name of the enum. |
Definition at line 51 of file ParameterQualifier.cs.
|
static |
Parses the specified enum name.
enumName | Name of the enum. |
Definition at line 69 of file ParameterQualifier.cs.
|
static |
In modifier, only for method parameters.
Definition at line 17 of file ParameterQualifier.cs.
|
static |
InOut Modifier, only for method parameters.
Definition at line 22 of file ParameterQualifier.cs.
|
static |
Out modifier, only for method parameters.
Definition at line 27 of file ParameterQualifier.cs.