C# 클래스 Summer.Batch.Extra.Utils.ReverseUtils

Reverse Helper.
파일 보기 프로젝트 열기: SummerBatch/SummerBatch

공개 메소드들

메소드 설명
ConvertBooleanToStringON ( bool boolean ) : string

Convert a bool to "O" or "N" string.

ConvertBooleanToStringYN ( bool boolean ) : string

Convert a bool to "Y" or "N" string.

ConvertStringToBooleanON ( string str ) : bool?

Convert a "O" or "N" string to bool.

ConvertStringToBooleanYN ( string str ) : bool?

Convert a "Y" or "N" string to bool.

IsCharHighValue ( char character ) : bool

Check if the given character is '\\u009F' ASCII value.

IsCharLowValue ( char character ) : bool

Check if the given character is '\\u0000' ASCII value.

IsSpaces ( object obj ) : bool

Check if all attributes of the object, whose types are Number, String or Date, are null or are empty/whitespace strings.

IsStringHighValue ( string str ) : bool

Check if characters of the given string are all '\\u009F' ASCII value.

IsStringLowValue ( string str ) : bool

Check if characters of the given string are all '\\u0000' ASCII value.

비공개 메소드들

메소드 설명
IsAttribute ( Type clazz ) : bool

isAttribute.

IsAttributeNull ( MethodInfo m, object obj ) : bool

isAttributeNull.

IsMethodToBeIgnored ( MethodInfo m ) : bool

IsMethodToBeIgnored.

메소드 상세

ConvertBooleanToStringON() 공개 정적인 메소드

Convert a bool to "O" or "N" string.
public static ConvertBooleanToStringON ( bool boolean ) : string
boolean bool bool
리턴 string

ConvertBooleanToStringYN() 공개 정적인 메소드

Convert a bool to "Y" or "N" string.
public static ConvertBooleanToStringYN ( bool boolean ) : string
boolean bool bool
리턴 string

ConvertStringToBooleanON() 공개 정적인 메소드

Convert a "O" or "N" string to bool.
public static ConvertStringToBooleanON ( string str ) : bool?
str string string
리턴 bool?

ConvertStringToBooleanYN() 공개 정적인 메소드

Convert a "Y" or "N" string to bool.
public static ConvertStringToBooleanYN ( string str ) : bool?
str string string
리턴 bool?

IsCharHighValue() 공개 정적인 메소드

Check if the given character is '\\u009F' ASCII value.
public static IsCharHighValue ( char character ) : bool
character char character char
리턴 bool

IsCharLowValue() 공개 정적인 메소드

Check if the given character is '\\u0000' ASCII value.
public static IsCharLowValue ( char character ) : bool
character char char
리턴 bool

IsSpaces() 공개 정적인 메소드

Check if all attributes of the object, whose types are Number, String or Date, are null or are empty/whitespace strings.
public static IsSpaces ( object obj ) : bool
obj object objet
리턴 bool

IsStringHighValue() 공개 정적인 메소드

Check if characters of the given string are all '\\u009F' ASCII value.
public static IsStringHighValue ( string str ) : bool
str string string
리턴 bool

IsStringLowValue() 공개 정적인 메소드

Check if characters of the given string are all '\\u0000' ASCII value.
public static IsStringLowValue ( string str ) : bool
str string string
리턴 bool