Gathering all Custom Post Type posts in to array/object the proper way

You’re looking for get_post_types();

It returns an array of every post type registered. To get the labels though, you’ll need to do something like:

foreach (get_post_types() as $pt) :
    $obj = get_post_type_object($pt);
    echo $obj->labels->name;
endforeach;