GREET API
Exposed interfaces to create modules that can be loaded in GREET
 All Classes Namespaces Files Functions Enumerations Enumerator Properties Events
PluginEnums.cs
Go to the documentation of this file.
1 using System;
2 using System.Collections.Generic;
3 using System.Linq;
4 using System.Text;
5 using System.Reflection;
6 
7 namespace PlugInsInterfaces.DataTypes
8 {
12  public class PluginEnums
13  {
14 
18  [Obfuscation(Feature = "renaming", Exclude = true)]
19  public enum SourceType { Well = 1, Mix = 2, Previous = 3, Pathway = 5 };
20 
24  [Obfuscation(Feature = "renaming", Exclude = true)]
25  public enum ResultType { emission, resource, emissionGroup, resourceGroup };
26 
30  [Obfuscation(Feature = "renaming", Exclude = true)]
31  public enum itemType { Vehicle, Pathway, Pathway_Mix, Monitor, Process, Vehicle_Monitor, Technology, Mode, Resource, Input };
32 
36  [Obfuscation(Feature = "renaming", Exclude = true)]
37  public enum CalculationType { Fuels, Vehicles };
38  }
39 }
itemType
Possible type for DependentItem
Definition: PluginEnums.cs:31
Enumerators used across the plugin interfaces
Definition: PluginEnums.cs:12
SourceType
Those are possible options for the main input source
Definition: PluginEnums.cs:19
CalculationType
Possible calculations run types
Definition: PluginEnums.cs:37
ResultType
Those are possible options for the results species
Definition: PluginEnums.cs:25