You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
66 lines
2.3 KiB
66 lines
2.3 KiB
#Region "Microsoft.VisualBasic::ebb40df87e60993346cb906951d1412c, ..\sciBASIC.ComputingServices\RQL\StorageTek\StorageTeks.vb"
|
|
|
|
' Author:
|
|
'
|
|
' asuka (amethyst.asuka@gcmodeller.org)
|
|
' xieguigang (xie.guigang@live.com)
|
|
' xie (genetics@smrucc.org)
|
|
'
|
|
' Copyright (c) 2016 GPL3 Licensed
|
|
'
|
|
'
|
|
' GNU GENERAL PUBLIC LICENSE (GPL3)
|
|
'
|
|
' This program is free software: you can redistribute it and/or modify
|
|
' it under the terms of the GNU General Public License as published by
|
|
' the Free Software Foundation, either version 3 of the License, or
|
|
' (at your option) any later version.
|
|
'
|
|
' This program is distributed in the hope that it will be useful,
|
|
' but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
' MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
' GNU General Public License for more details.
|
|
'
|
|
' You should have received a copy of the GNU General Public License
|
|
' along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
#End Region
|
|
|
|
Namespace StorageTek
|
|
|
|
''' <summary>
|
|
''' Entity storage technology.(实体对象所存储的方法)
|
|
''' </summary>
|
|
Public Enum StorageTeks As Integer
|
|
''' <summary>
|
|
''' 使用的是Linq数据源
|
|
''' </summary>
|
|
Linq
|
|
''' <summary>
|
|
''' Individual files in a directory.(以单独的文件的形式保存在一个文件夹之中)
|
|
''' </summary>
|
|
DIR = 2
|
|
''' <summary>
|
|
''' Csv rows.(Csv文件的行映射为某一个实体对象)(需要外部插件)
|
|
''' </summary>
|
|
Tabular = 4
|
|
''' <summary>
|
|
''' Xml文件之中的List之中的某一个对象映射为某一个实体对象
|
|
''' </summary>
|
|
Xml = 8
|
|
''' <summary>
|
|
''' Json文件之中的list之中的某一个对象映射为某一个实体对象
|
|
''' </summary>
|
|
Json = 16
|
|
''' <summary>
|
|
''' 实体对象是存储在MySQL数据库的某一张表之中的.(需要外部插件)
|
|
''' </summary>
|
|
SQL = 32
|
|
''' <summary>
|
|
''' 二进制类型的数据源
|
|
''' </summary>
|
|
''' <remarks>例如图片,声音,视频等</remarks>
|
|
Binary = 64
|
|
End Enum
|
|
End Namespace
|