Class English
Converts numbers to english strings for testing.
Note
This API is for internal purposes only and might change in incompatible ways in the next release.
Inherited Members
Namespace: Lucene.Net.Util
Assembly: Lucene.Net.TestFramework.dll
Syntax
public static class English
Methods
Int32ToEnglish(int)
Converts numbers to english strings for testing.
Note
This API is for internal purposes only and might change in incompatible ways in the next release.
Declaration
public static string Int32ToEnglish(int i)
Parameters
Type | Name | Description |
---|---|---|
int | i |
Returns
Type | Description |
---|---|
string |
Int32ToEnglish(int, StringBuilder)
Converts numbers to english strings for testing.
Note
This API is for internal purposes only and might change in incompatible ways in the next release.
Declaration
public static void Int32ToEnglish(int i, StringBuilder result)
Parameters
Type | Name | Description |
---|---|---|
int | i | |
StringBuilder | result |
Int64ToEnglish(long)
Converts numbers to english strings for testing.
Note
This API is for internal purposes only and might change in incompatible ways in the next release.
Declaration
public static string Int64ToEnglish(long i)
Parameters
Type | Name | Description |
---|---|---|
long | i |
Returns
Type | Description |
---|---|
string |
Int64ToEnglish(long, StringBuilder)
Converts numbers to english strings for testing.
Note
This API is for internal purposes only and might change in incompatible ways in the next release.
Declaration
public static void Int64ToEnglish(long i, StringBuilder result)
Parameters
Type | Name | Description |
---|---|---|
long | i | |
StringBuilder | result |
ToEnglish(int)
Converts numbers to english strings for testing.
Note
This API is for internal purposes only and might change in incompatible ways in the next release.
Declaration
public static string ToEnglish(this int i)
Parameters
Type | Name | Description |
---|---|---|
int | i |
Returns
Type | Description |
---|---|
string |
ToEnglish(int, StringBuilder)
Converts numbers to english strings for testing.
Note
This API is for internal purposes only and might change in incompatible ways in the next release.
Declaration
public static void ToEnglish(this int i, StringBuilder result)
Parameters
Type | Name | Description |
---|---|---|
int | i | |
StringBuilder | result |
ToEnglish(long)
Converts numbers to english strings for testing.
Note
This API is for internal purposes only and might change in incompatible ways in the next release.
Declaration
public static string ToEnglish(this long i)
Parameters
Type | Name | Description |
---|---|---|
long | i |
Returns
Type | Description |
---|---|
string |
ToEnglish(long, StringBuilder)
Converts numbers to english strings for testing.
Note
This API is for internal purposes only and might change in incompatible ways in the next release.
Declaration
public static void ToEnglish(this long i, StringBuilder result)
Parameters
Type | Name | Description |
---|---|---|
long | i | |
StringBuilder | result |