Vuo  2.0.0
Enumerations | Functions
VuoTextCase

Description

Describes different text casing styles.

Enumerations

enum  VuoTextCase { VuoTextCase_LowercaseAll, VuoTextCase_UppercaseAll, VuoTextCase_UppercaseFirstLetterWord, VuoTextCase_UppercaseFirstLetterSentence }
 Describes different text casing styles. More...
 

Functions

VuoTextCase VuoTextCase_makeFromJson (json_object *js)
 
json_objectVuoTextCase_getJson (const VuoTextCase value)
 
char * VuoTextCase_getSummary (const VuoTextCase value)
 
VuoList_VuoTextCase VuoTextCase_getAllowedValues (void)
 Returns a list of values that instances of this type can have. More...
 
VuoTextCase VuoTextCase_makeFromString (const char *str)
 Automatically generated function. More...
 
char * VuoTextCase_getString (const VuoTextCase value)
 Automatically generated function. More...
 
void VuoTextCase_retain (VuoTextCase value)
 Automatically generated function. More...
 
void VuoTextCase_release (VuoTextCase value)
 Automatically generated function. More...
 

Enumeration Type Documentation

◆ VuoTextCase

Describes different text casing styles.

Enumerator
VuoTextCase_LowercaseAll 

all characters are lowercase.

VuoTextCase_UppercaseAll 

ALL CHARACTERS ARE UPPERCASE.

VuoTextCase_UppercaseFirstLetterWord 

The First Letter In Each Word Is Uppercase.

VuoTextCase_UppercaseFirstLetterSentence 

The first letter in every sentence is uppercase.

Definition at line 30 of file VuoTextCase.h.

Function Documentation

◆ VuoTextCase_getAllowedValues()

VuoList_VuoTextCase VuoTextCase_getAllowedValues ( void  )

Returns a list of values that instances of this type can have.

Definition at line 69 of file VuoTextCase.c.

◆ VuoTextCase_getJson()

struct json_object * VuoTextCase_getJson ( const VuoTextCase  value)

Encodes value as a JSON object.

Definition at line 52 of file VuoTextCase.c.

◆ VuoTextCase_getString()

char* VuoTextCase_getString ( const VuoTextCase  value)

Automatically generated function.

◆ VuoTextCase_getSummary()

char * VuoTextCase_getSummary ( const VuoTextCase  value)

Same as VuoTextCase_getString()

Definition at line 83 of file VuoTextCase.c.

◆ VuoTextCase_makeFromJson()

VuoTextCase VuoTextCase_makeFromJson ( json_object js)

Decodes the JSON object js, expected to contain a string, to create a new VuoTextCase.

Definition at line 31 of file VuoTextCase.c.

◆ VuoTextCase_makeFromString()

VuoTextCase VuoTextCase_makeFromString ( const char *  str)

Automatically generated function.

◆ VuoTextCase_release()

void VuoTextCase_release ( VuoTextCase  value)

Automatically generated function.

◆ VuoTextCase_retain()

void VuoTextCase_retain ( VuoTextCase  value)

Automatically generated function.