Class ByteOrder
Defines byte order constants.
Inheritance
System.Object
    ByteOrder
  Inherited Members
      System.Object.Equals(System.Object)
    
    
      System.Object.Equals(System.Object, System.Object)
    
    
      System.Object.GetHashCode()
    
    
      System.Object.GetType()
    
    
      System.Object.MemberwiseClone()
    
    
      System.Object.ReferenceEquals(System.Object, System.Object)
    
  Namespace: Lucene.Net.Support.IO
Assembly: Lucene.Net.dll
Syntax
public sealed class ByteOrder
  Fields
| Improve this Doc View SourceBIG_ENDIAN
This constant represents big endian.
Declaration
public static readonly ByteOrder BIG_ENDIAN
  Field Value
| Type | Description | 
|---|---|
| ByteOrder | 
LITTLE_ENDIAN
This constant represents little endian.
Declaration
public static readonly ByteOrder LITTLE_ENDIAN
  Field Value
| Type | Description | 
|---|---|
| ByteOrder | 
Properties
| Improve this Doc View SourceNativeOrder
Returns the current platform byte order.
Declaration
public static ByteOrder NativeOrder { get; }
  Property Value
| Type | Description | 
|---|---|
| ByteOrder | 
Methods
| Improve this Doc View SourceToString()
Returns a string that describes this object.
Declaration
public override string ToString()
  Returns
| Type | Description | 
|---|---|
| System.String | "BIG_ENDIAN" for BIG_ENDIAN objects, "LITTLE_ENDIAN" for LITTLE_ENDIAN objects.  | 
      
Overrides
System.Object.ToString()