public final LinkedList<ActionFeature> copyFeatureList() {
   // Construct A List Copy
   final LinkedList<ActionFeature> copy = new LinkedList<>();
   // Copy Each Single Member
   for (final ActionFeature feature : mFeatureList) {
     copy.add(feature.getCopy());
   }
   // Return The Final Clone
   return copy;
 }