C# Client Library
A C# Client Library for the AnalyzeRe REST API
Loading...
Searching...
No Matches
AnalyzeRe.LossSets.LossSetProfile Class Reference

A profile of this loss set, containing server generated meta data about its contents. More...

Public Member Functions

virtual T ShallowCopy< T > ()
 Create a shallow copy of this object.

See also
ExtensionMethods.DeepCopy<T>

for a serializer-based copy method.

 

Protected Member Functions

virtual void AfterMembersCloned (APIType originalResource)
 Invoked following construction if the current instance has been created using a member-wise clone of some other instance. Override if your derived APIType class contains some members that should not be cloned.
 

Properties

Dictionary< string, List< object > > attributes [get, set]
 A list of attributes found in this loss set and the distinct values that exist for each attribute.
 
double? avg_annual_loss [get, set]
 The average annual loss in this loss set.
 
string currency [get, set]
 The currency of the loss metrics in this profile.
 
double? max_loss [get, set]
 The maximum loss in this loss set.
 
double? min_loss [get, set]
 The minimum loss in this loss set.
 
long? non_zero_losses [get, set]
 The number of non-zero losses in this loss set.
 
long? num_losses [get, set]
 The number of losses in this loss set.
 

Detailed Description

A profile of this loss set, containing server generated meta data about its contents.

Definition at line 8 of file LossSetProfile.cs.

Inheritance diagram for AnalyzeRe.LossSets.LossSetProfile:
AnalyzeRe.APIType AnalyzeRe.IAPIType

Member Function Documentation

◆ AfterMembersCloned()

virtual void AnalyzeRe.APIType.AfterMembersCloned ( APIType  originalResource)
inlineprotectedvirtualinherited

Invoked following construction if the current instance has been created using a member-wise clone of some other instance. Override if your derived APIType class contains some members that should not be cloned.

Overriding implementations should be sure to invoke base.AfterMembersCloned().

A sane question for a code reviewer to ask might be: "Why not avoid copying those members in the first place?" The answer is that there is no framework-supported method of excluding members from a MemberwiseClone. The only officially supported solution is to not use the object.MemberwiseClone method at all and instead have each class implement it's own Copy method. In our case, most objects have no need to specialize their copy implementation (even though they could - the ShallowCopy<T> method is marked virtual). It's simpler to simply "correct" any special-case members after the fact, and requires less error-prone code than if the code were responsible for ensuring no members were missed in a copy. It's also faster than any reflection-based approach, even though such an approach could benefit from custom attributes meant to exclude certain members from copying.

Reimplemented in AnalyzeRe.APITypes.APIResource_WithDataEndpoint, AnalyzeRe.APIResourceView.BaseAPIResourceView, AnalyzeRe.Distributions.CustomDistribution, AnalyzeRe.LossSets.LossSet_WithData, AnalyzeRe.Optimization.Candidate, AnalyzeRe.Optimization.OptimizationView, and AnalyzeRe.StaticSimulation.

Definition at line 37 of file APIType.cs.

◆ ShallowCopy< T >()

virtual T AnalyzeRe.APIType.ShallowCopy< T > ( )
inlinevirtualinherited

Create a shallow copy of this object.

See also
ExtensionMethods.DeepCopy<T>

for a serializer-based copy method.

Returns
A shallow copy of this object.

If this object contains any members that reference the current object (this), the class should override this method to avoid cloning a reference to the old class.

Implements AnalyzeRe.IAPIType.

Type Constraints
T :IAPIType 

Definition at line 14 of file APIType.cs.

Property Documentation

◆ attributes

Dictionary<string, List<object> > AnalyzeRe.LossSets.LossSetProfile.attributes
getset

A list of attributes found in this loss set and the distinct values that exist for each attribute.

Definition at line 37 of file LossSetProfile.cs.

◆ avg_annual_loss

double? AnalyzeRe.LossSets.LossSetProfile.avg_annual_loss
getset

The average annual loss in this loss set.

Definition at line 12 of file LossSetProfile.cs.

◆ currency

string AnalyzeRe.LossSets.LossSetProfile.currency
getset

The currency of the loss metrics in this profile.

Definition at line 24 of file LossSetProfile.cs.

◆ max_loss

double? AnalyzeRe.LossSets.LossSetProfile.max_loss
getset

The maximum loss in this loss set.

Definition at line 20 of file LossSetProfile.cs.

◆ min_loss

double? AnalyzeRe.LossSets.LossSetProfile.min_loss
getset

The minimum loss in this loss set.

Definition at line 16 of file LossSetProfile.cs.

◆ non_zero_losses

long? AnalyzeRe.LossSets.LossSetProfile.non_zero_losses
getset

The number of non-zero losses in this loss set.

Definition at line 32 of file LossSetProfile.cs.

◆ num_losses

long? AnalyzeRe.LossSets.LossSetProfile.num_losses
getset

The number of losses in this loss set.

Definition at line 28 of file LossSetProfile.cs.


The documentation for this class was generated from the following file: