Initialize() 공개 정적인 메소드

public static Initialize ( System treefile, System blockfile, int KeyLength ) : BplusTreeBytes
treefile System
blockfile System
KeyLength int
리턴 BplusTreeBytes
예제 #1
0
        public static BplusTree Initialize(Stream treefile, Stream blockfile, int keyLength, int cultureId,
                                           int nodesize, int buffersize)
        {
            BplusTreeBytes tree = BplusTreeBytes.Initialize(treefile, blockfile, keyLength, cultureId, nodesize, buffersize);

            return(new BplusTree(tree));
        }
예제 #2
0
        public static BplusTree Initialize(System.IO.Stream treefile, System.IO.Stream blockfile, int KeyLength, int CultureId,
                                           int nodesize, int buffersize)
        {
            BplusTreeBytes tree = BplusTreeBytes.Initialize(treefile, blockfile, KeyLength, CultureId, nodesize, buffersize);

            return(new BplusTree(tree));
        }
예제 #3
0
        public static BplusTree Initialize(string treefileName, string blockfileName, int KeyLength, int CultureId,
                                           int nodesize, int buffersize)
        {
            BplusTreeBytes tree = BplusTreeBytes.Initialize(treefileName, blockfileName, KeyLength, CultureId, nodesize, buffersize);

            return(new BplusTree(tree));
        }
예제 #4
0
 public static xBplusTreeBytes Initialize(string treefileName, string blockfileName, int PrefixLength, int CultureId,
                                          int nodesize, int buffersize)
 {
     return(new xBplusTreeBytes(
                BplusTreeBytes.Initialize(treefileName, blockfileName, PrefixLength, CultureId, nodesize, buffersize),
                PrefixLength));
 }
예제 #5
0
 public static xBplusTreeBytes Initialize(System.IO.Stream treefile, System.IO.Stream blockfile, int PrefixLength, int CultureId,
                                          int nodesize, int buffersize)
 {
     return(new xBplusTreeBytes(
                BplusTreeBytes.Initialize(treefile, blockfile, PrefixLength, CultureId, nodesize, buffersize),
                PrefixLength));
 }
예제 #6
0
 public new static hBplusTreeBytes Initialize(Stream treefile, Stream blockfile, int PrefixLength, int cultureId,
                                              int nodesize, int buffersize)
 {
     return(new hBplusTreeBytes(
                BplusTreeBytes.Initialize(treefile, blockfile, PrefixLength, cultureId, nodesize, buffersize),
                PrefixLength));
 }
예제 #7
0
        public static BplusTree Initialize(System.IO.Stream treefile, System.IO.Stream blockfile, int KeyLength)
        {
            BplusTreeBytes tree = BplusTreeBytes.Initialize(treefile, blockfile, KeyLength);

            return(new BplusTree(tree));
        }
예제 #8
0
        public static BplusTree Initialize(string treefileName, string blockfileName, int KeyLength)
        {
            BplusTreeBytes tree = BplusTreeBytes.Initialize(treefileName, blockfileName, KeyLength);

            return(new BplusTree(tree));
        }
예제 #9
0
        public static BplusTree Initialize(string treefileName, string blockfileName, int keyLength, int cultureId)
        {
            BplusTreeBytes tree = BplusTreeBytes.Initialize(treefileName, blockfileName, keyLength, cultureId);

            return(new BplusTree(tree));
        }
예제 #10
0
 public static xBplusTreeBytes Initialize(System.IO.Stream treefile, System.IO.Stream blockfile, int PrefixLength)
 {
     return(new xBplusTreeBytes(
                BplusTreeBytes.Initialize(treefile, blockfile, PrefixLength),
                PrefixLength));
 }
예제 #11
0
 public static xBplusTreeBytes Initialize(string treefileName, string blockfileName, int PrefixLength)
 {
     return(new xBplusTreeBytes(
                BplusTreeBytes.Initialize(treefileName, blockfileName, PrefixLength),
                PrefixLength));
 }
예제 #12
0
 public new static hBplusTreeBytes Initialize(Stream treefile, Stream blockfile, int PrefixLength)
 {
     return(new hBplusTreeBytes(
                BplusTreeBytes.Initialize(treefile, blockfile, PrefixLength),
                PrefixLength));
 }
예제 #13
0
 public new static hBplusTreeBytes Initialize(string treefileName, string blockfileName, int PrefixLength, int cultureId)
 {
     return(new hBplusTreeBytes(
                BplusTreeBytes.Initialize(treefileName, blockfileName, PrefixLength, cultureId),
                PrefixLength));
 }
예제 #14
0
 public new static hBplusTreeBytes Initialize(System.IO.Stream treefile, System.IO.Stream blockfile, int PrefixLength, int CultureId)
 {
     return(new hBplusTreeBytes(
                BplusTreeBytes.Initialize(treefile, blockfile, PrefixLength, CultureId),
                PrefixLength));
 }