Class JvmParameter
- Namespace
- TypedRest.CodeGeneration.Jvm.Model
- Assembly
- TypedRest.CodeGeneration.Jvm.dll
A parameter of a generated constructor.
public sealed class JvmParameter
- Inheritance
-
objectJvmParameter
Constructors
JvmParameter(string, JvmIdentifier)
A parameter of a generated constructor.
public JvmParameter(string name, JvmIdentifier type)
Parameters
namestringThe name of the parameter.
typeJvmIdentifierThe type of the parameter.
Properties
Name
The name of the parameter.
public string Name { get; }
Property Value
Type
The type of the parameter.
public JvmIdentifier Type { get; }